我只是试图使用PHP裁剪JPEG图像(不缩放).这是我的功能以及输入.
function cropPicture($imageLoc, $width, $height, $x1, $y1) {
$newImage = imagecreatetruecolor($width, $height);
$source = imagecreatefromjpeg($imageLoc);
imagecopyresampled($newImage,$source,0,0,$x1,$y1,$width,$height,$width,$height);
imagejpeg($newImage,$imageLoc,90);
}
当我按如下方式调用它时–cropPicture(‘image.jpg’,300,300,0,0)-该功能正常完成,但是我剩下的是300×300 px的黑色图像(换句话说,空白的画布).我是否传递了错误的论点?
该图像存在并且可以写入.
解决方法:
作为sobedai的回答的补充:您在cropPicture()中使用的任何这些函数都可能失败.您必须测试每一个的返回值.如果发生错误,它们将返回false,并且您的函数将无法继续(正确).
function cropPicture($imageLoc, $width, $height, $x1, $y1) {
$newImage = imagecreatetruecolor($width, $height);
if ( !$newImage ) {
throw new Exception('imagecreatetruecolor failed');
}
$source = imagecreatefromjpeg($imageLoc);
if ( !$source ) {
throw new Exception('imagecreatefromjpeg');
}
$rc = imagecopyresampled($newImage,$source,0,0,$x1,$y1,$width,$height,$width,$height);
if ( !$rc ) {
throw new Exception('imagecopyresampled');
}
$rc = imagejpeg($newImage,$imageLoc,90);
if ( !$rc ) {
throw new Exception('imagejpeg');
}
}
编辑:您可能还对http://docs.php.net/error_get_last感兴趣.示例脚本中的异常消息没有帮助…