ImageCopyResampled可以處理的最大寬度和高度是多少?我的代碼適用於寬度和高度較小的圖像。對於較大的圖像,它將忽略座標,這意味着裁剪從圖像的左上角開始。PHP - ImageCopyResampled max size
是否有解決方法?這裏有一部分:
$trgt_width = 500;
$trgt_height = 400;
if(copy($src_file, $trgt_file)):
$src_image = imageCreateFromJpeg($src_file);
$trgt_image = imageCreateTrueColor($trgt_width, $trgt_height);
imageCopyResampled($trgt_image, $src_image, 0, 0, $x, $y, $trgt_width, $trgt_height, $width ,$height);
imageJpeg($trgt_image, $thumb_file, 75);
endif;
謝謝。
這是你的嗎? http://stackoverflow.com/questions/2274266/php-problem-with-imagecopyresampled如果是這樣,你爲什麼要開設新賬戶來問新問題? – 2010-02-17 01:55:45
對,對不起。我決定使用不同的電子郵件地址,因爲我爲第一個帳戶輸入了錯誤的電子郵件地址。感謝您的回答。 – mist 2010-02-17 02:20:32