سلام
از این کد میتونی استفاده کنی:
کد HTML:
$File = $_FILES['photo']['name'];
$upper = strtoupper($File);
@$ext = end(explode('.',$upper));
if($ext =="JPG" OR $ext=="JPEG"){
$img = imagecreatefromjpeg( "images/".$File );
$width = imagesx($img );
$height = imagesy( $img );
$new_width = 128;//پهنا
$new_height = 128;//ارتفاع
$tmp_img = imagecreatetruecolor( $new_width, $new_height );
imagecopyresized( $tmp_img, $img, 0, 0, 0, 0, $new_width, $new_height, $width, $height );
imagejpeg( $tmp_img, "images/tum/thumbs_".$File );
}