我正在使用这个PHP代码:
$targ_w = $targ_h = 150;
$jpeg_quality = 100;
$src = $_POST['img'];
$img_r = imagecreatefromjpeg($src);
$dst_r = ImageCreateTrueColor( $targ_w, $targ_h );
$finalName = mt_rand().'_'.mt_rand().'_'.mt_rand().'.jpg';
imagecopyresampled($dst_r,$img_r,0,0,$_POST['x'],$_POST['y'],
$targ_w,$targ_h,$_POST['w'],$_POST['h']);
header("Content-type: image/jpeg");
//imagejpeg($dst_r, "uploads/avatars/" . $finalName, $jpeg_quality);
imagejpeg($dst_r, null, $jpeg_quality);
当我使用时:
imagejpeg($dst_r, null, $jpeg_quality);
它没有任何问题。
当我使用这个将图像保存到文件夹时:
imagejpeg($dst_r, "uploads/avatars/" . $finalName, $jpeg_quality);
它不起作用。
文件夹avatars
具有755权限,因此不是权限问题。
任何建议将不胜感激。