намерих един урок http://web-tourist.net/login/login/view.php?st=2410 само че не мога да го подкарам направих го така
само че не иска и не иска да създава картинката знам че сигурно е нещо елементарно но аз съм си леко тъп
Код:
<?php
$imgfile = $_GET['id'];
function thumbnail($imgfile,$thumbsize) {
list($width,$height) = getimagesize("images/$imgfile");
$imgratio = $width / $height;
if($imgratio > 1) {
$newwidth = $thumbsize;
$newheight = $thumbsize / $imgratio;
}
else if($imgratio < 1) {
$newheight = $thumbsize;
$newwidth = $thumbsize * $imgratio;
}
else {
$newheight = $thumbsize;
$newwidth = $thumbsize;
}
$thumb = "images/th_$imgfile";
$img = "images/$imgfile";
$thumbnail = system("convert $img -coalesce -resize $newwidth x $newheight -deconstruct $thumb");
}
?>