ЕСть код:
$filename='files/'.$image;
header ("Content-type: image/jpeg");
$img=imagecreatefromstring(file_get_contents($filename));
$dest=imagecreatetruecolor($ism_w,$ism_h);
$width=imagesx($img);
$height=imagesy($img);
imagecopyresized($dest,$img,0,0,0,0,$ism_w,$ism_h,$width,$height);
imagejpeg($dest,'',80);
imagedestroy($img);