0
美好的一天。裁剪圖像中的錯誤?
我有問題,裁剪圖像。
原始圖像:
使用後的代碼,我給下一個影像:
代碼的裁剪圖像:
$pathTemp = '../Images/Temp/';
$path = '../Images/';
$pathCrop = '../Images/Crop/';
if($image=='0'){die('error_image');}
if (!copy($pathTemp.$image, $path.$image)){die('error_image');}
$ext_arr = explode('.',$image);
$ext = $ext_arr[1];
$jpeg_quality = 90;
$src = $pathCrop.$image;
$img_r = imagecreatefromjpeg($src);
$dst_r = imagecreatetruecolor($_POST['w'], $_POST['h']);
imagecopyresized($dst_r,$img_r,0,0,$_POST['x1'],$_POST['y1'],170,110,$_POST['w'],$_POST['h']);
imagejpeg($dst_r,$pathCrop.time().'.jpg',$jpeg_quality);
請告訴我,哪裏有錯誤?
爲什麼我變壞了最終圖像?
沒問題!這是我第一次回答;) – 2013-03-07 14:51:36