1){ $t_ht = $height; $t_wd = $t_ht/$arany; } else{ $t_wd = $width; $t_ht = $t_wd*$arany; } if(!empty($pd)){ if($pd='h' and $height/$arany < $width){ $t_ht = $height; $t_wd = $t_ht/$arany; } else{ $t_wd = $width; $t_ht = $t_wd*$arany; } } } $t_im = imageCreateTrueColor($t_wd,$t_ht); imageCopyResampled($t_im, $o_im, 0, 0, 0, 0, $t_wd, $t_ht, $o_wd, $o_ht); header("Content-type: image/jpeg"); imageJPEG($t_im); imageDestroy($o_im); imageDestroy($t_im); ?>