maketb.php?f=dosya yolu şeklinde kullanıyorum.
<?
$f=$_GET['f'];
$h=75;
$w=$h;
header("Content-Type: image/jpeg");
$im = imagecreatetruecolor ($w, $h);
$imx = imagecreatefromjpeg($f);
$xxx = getimagesize($f);
imagecopyresampled($im, $imx, 0, 0, 0, 0, $w, $h, $xxx[0], $xxx[1]);
imagejpeg ($im);
imagedestroy($im);
imagedestroy($imx);
?>