задаване на максимална широчина

kriss

Registered
как мога да задам примерно тук <img src="kartinka"> ако е повече от 300px широчината й, тя автоматично да става <img src="kartinkata" width="300px"> ..?
 
BeSeN1 каза:
Пробвай това

PHP КОД:
Код:
<?php
 
if($_SERVER['REQUEST_METHOD'] == 'POST') {
if($_FILES['image']) {
preg_match('/\.([A-Za-z]+?)$/', $_FILES['image']['name'], $matches);
$matches[1] = strtolower($matches[1]);
if($matches[1] == 'png' && function_exists('imagecreatefrompng') || $matches[1]
== 'jpg' && function_exists('imagecreatefromjpeg') || $matches[1] == 'jpeg' &&
function_exists('imagecreatefromjpeg') || $matches[1] == 'gif' && function_exists('imagecreatefromgif')  || $matches[1] == 'bmp' && function_exists('imagecreatefromwbmp')) {
list($owidth, $oheight) = getimagesize($_FILES['image']['tmp_name']);
if($_POST['resizeby'] == 'height') {
$nheight = ($_POST['size']>1)?$_POST['size']:600;
$nwidth = $nheight / $oheight * $owidth;
$resized = imagecreatetruecolor($nwidth, $nheight);
}
else {
$nwidth = ($_POST['size']>1)?$_POST['size']:800;
$nheight = $nwidth / $owidth * $oheight;
$resized = imagecreatetruecolor($nwidth, $nheight);
}
if($matches[1] == 'png')
$original = imagecreatefrompng($_FILES['image']['tmp_name']);
if($matches[1] == 'jpg' || $matches[1] == 'jpeg')
$original = imagecreatefromjpeg($_FILES['image']['tmp_name']);
if($matches[1] == 'gif')
$original = imagecreatefromgif($_FILES['image']['tmp_name']);
if($matches[1] == 'bmp')
$original = imagecreatefromwbmp($_FILES['image']['tmp_name']);
imagecopyresampled($resized, $original, 0, 0, 0, 0, $nwidth, $nheight, $owidth, $oheight);
header('Content-Disposition: attachment; filename="'.$_FILES['image']['name'].'"');
header('Content-type: image/'.(($matches[1] == 'jpg')?'jpeg':$matches[1]));
if($matches[1] == 'png')
imagepng($resized);
if($matches[1] == 'jpg' || $matches[1] == 'jpeg')
imagejpeg($resized);
if($matches[1] == 'gif')
imagegif($resized);
if($matches[1] == 'bmpg')
imagewbmp($resized);
exit();
} else
$error = 'File type not supported!';
} else
$error = 'No image uploaded!';
}
?><?php print '<'.'?xml version="1.0" encoding="windows-1251"?'.'>'; ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" ><head><title>Resize Image</title><link rel="stylesheet" href="resize.css" type="text/css" /></head><body><h1>Resize Image</h1><?php
if($error)
print '<p>'.$error.'</p>';
?><form action="" method="post" enctype="multipart/form-data" ><p>Upload your JPG, JPEG, GIF, PNG or BMP image: <br /><input type="file" name="image" /></p><p>Choose a height or width you want your image to be: <br /><select name="resizeby"><option value="width" selected="true">Width:</option><option value="height">Height:</option></select><input type="text" name="size" id="size" value="800" /> pixels</p><p><input type="submit" value="Submit" id="submit" /></p></form><p id="footer">Powered by <a href="http://tonibg.net/">Toni Angelchovski</a>.
</p></body></html>

CSS КОД:

Код:
html {
 
    text-align: center;
 
    background-color: #373737;
 
}
 
body {
 
    padding: 5px 5px 5px 5px;
 
    width: 500px;
 
    height: 300px;
 
    background-color: #BFBFBF;
 
    border: 10px solid #000;
 
    margin: 0 auto;
 
    text-align: left;
 
    position: absolute;
 
    top: 50%;
 
    left: 50%;
 
    margin-top: -150px;
 
    margin-left: -250px;
 
    font-family: sans-serif;
 
    font-size: 15px;
 
    background-image: url(toni.png);
 
    background-repeat: no-repeat;
 
    background-position: bottom right;
 
}
 
input {
 
    font-size: 15px;
 
}
 
h1, iframe {
 
    padding: 0;
 
    margin: 0;
 
}
 
#size {
 
    width: 4em;
 
}
 
#submit {
 
    font-size: 20px;
 
    background-color: #00b2ff;
 
    color: #FFF;
 
    border: 3px solid #000;
 
}
 
#footer {
 
    text-align: center;
 
    font-size: small;
 
}

Това няма нищо общо с това което пита!!!
 
FreeStylerz каза:
Код:
list($width, $height) = getimagesize("".$promenliva."");
if($width > 300) {
echo "<img src='$promenliva' width='300'>";
}
else {
echo "<img src='$promenliva'>";
}

и как да го вградя тук
Код:
$text2 =preg_replace("/\[img\](.+?)\[\/img\]/s", '<img src="$1" alt="" title="" >',$text2);
 
list($width, $height) = getimagesize("".$1."");
if($width > 300) {
echo "<img src='$1' width='300'>";
}
else {
echo "<img src='$1'>";
}

или

$image = $1;
list($width, $height) = getimagesize("".$image"");
if($width > 300) {
echo "<img src='$image' width='300'>";
}
else {
echo "<img src='$image'>";
}

за това избощо не съм сигорен но пробвай ако не станат тези 2:
list($width, $height) = getimagesize("".$text2."");
if($width > 300) {
echo "<img src='$text2' width='300'>";
}
else {
echo "<img src='$text2'>";
}
 
FreeStylerz каза:
list($width, $height) = getimagesize("".$1."");
if($width > 300) {
echo "<img src='$1' width='300'>";
}
else {
echo "<img src='$1'>";
}

или

$image = $1;
list($width, $height) = getimagesize("".$image"");
if($width > 300) {
echo "<img src='$image' width='300'>";
}
else {
echo "<img src='$image'>";
}

за това избощо не съм сигорен но пробвай ако не станат тези 2:
list($width, $height) = getimagesize("".$text2."");
if($width > 300) {
echo "<img src='$text2' width='300'>";
}
else {
echo "<img src='$text2'>";
}

нито едното не стана :?
 
защото като поставиш картинката и то я вкарва с <img src='...'> след минутка ще си едит поста :) и ще го направим :)


EDIT:
Код:
$image = $1;
$img = substr("".$image."", -10, 2);
list($width, $height) = getimagesize("".$img."");
if($width > 300) {
echo "<img src='$img' width='300'>";
}
else {
echo "<img src='$img'>";
}

Така?
 

Back
Горе