$width) { // na vysku
$t_height = 50;
$t_width = floor(($width * $t_height) / $height); // zachovam pomer stran originalu
}
else {
$t_width = 50; // thumbnail width
$t_height = floor($t_width / ($width / $height)); // zachovam pomer stran originalu
}
*/
$destimage = imagecreatetruecolor($t_width,$t_height);
//CREATES IMAGE WITH NEW SIZES
// $thumb = imagecreatetruecolor($newwidth, $newheight);
//imagecopyresized ($destimage,$srcimage,0,0,0,0,$t_width,$t_height,$width,$height);
imagecopyresampled($destimage,$srcimage,0,0,0,0,$t_width,$t_height,$width,$height);
ImageJPEG($destimage);
ImageDestroy($destimage);
}
// } //end if(stristr($imgname,".jpg"))
// else echo "fail";
} // end if(isset($imgname))
?>