PHP - 使用GD旋转图像会产生黑色边框

时间:2016-11-16 11:14:15

标签: php image gd

我正在尝试旋转并保存图像。轮换基于EXIF数据。我尝试了下面的内容,它们周围都有黑色边框:

enter image description here

原件如下所示:

$orientation = array_values([0, 0, 0, 180, 0, 0, -90, 0, 90])[@exif_read_data($imagePath)['Orientation'] ?: 0];

$source = imagecreatefromjpeg($imagePath);
$resource = imagerotate($source, $orientation, 0);
imagejpeg($resource, $image, 100);

我还尝试按Black background when rotating image with PHP中的建议添加imagealphablending($resource, true);imagesavealpha($resource, true);,但无济于事;边界仍然存在。

然后我尝试使用imagecreatetruecolor()创建图片:

$imageSizes = getimagesize($image);
$oldWidth  = $imageSizes[0];
$oldHeight = $imageSizes[1];

$orientation = array_values([0, 0, 0, 180, 0, 0, -90, 0, 90])[@exif_read_data($image)['Orientation'] ?: 0];

$source = imagecreatefromjpeg($imagePath);
$resource = imagerotate($source, $orientation, 0);

$newWidth  = $oldWidth;
$newHeight = $oldHeight;

if ($orientation !== 180 && $orientation !== 0) {
    $newWidth  = $oldHeight;
    $newHeight = $oldWidth;
}

$imageResized = imagecreatetruecolor($newWidth, $newHeight); 

imagecopyresampled ($imageResized, $resource, 0, 0, 0, 0, $newWidth, $newHeight, $oldWidth, $oldHeight); 
imagejpeg($imageResized, $image, 100);

但我似乎无法让它发挥作用。有人能帮我这个吗?

2 个答案:

答案 0 :(得分:4)

我今天在PHP for Windows中发现了这个问题。当你进行0度或360度旋转时,边框似乎只会被添加。我没有180度旋转的边框。因此,只需检查方向是否为非零,只在必要时旋转。

... if ($orientation !== 0) $resource = imagerotate($source, $orientation, 0); else $resource = $source; end ...

答案 1 :(得分:1)

这不是一个答案..它可能对你有所帮助,或者它可能不是

我已经测试了您的代码,并且我可以正常使用enter image description here

另外,使用你的图片它不会给我你的问题。

正如我所看到的,你的结果图片,带有黑色边框,与原版有差异..看看左边框,顶部的狗是歪斜的,那个区别是黑色边框