带有alpha颜色的imagerotate不起作用

时间:2014-12-10 17:02:27

标签: php image gd dynamic-image-generation

我有一个奇怪的情况。

看起来背景并不总是透明的,但在某种程度上它会破碎......

good one 30 degree

not good

这是代码:

$angle = !empty($_GET['a']) ? (int)$_GET['a'] : 0;

$im = imagecreatefromgif(__DIR__ . '/track/direction1.gif');
imagealphablending($im, false);
imagesavealpha($im, true);

$transparency = imagecolorallocatealpha($im, 0, 0, 0, 127);
$rotated = imagerotate($im, $angle, $transparency);

imagealphablending($rotated, false);
imagesavealpha($rotated, true);

imagepng($rotated);
imagedestroy($rotated);

imagedestroy($im);
header('Content-Type: image/png');

只是不明白发生了什么......我错过了什么?

EDIT1

添加了func:

if(!function_exists('imagepalettetotruecolor'))
{
    function imagepalettetotruecolor(&$src)
    {
        if(imageistruecolor($src))
        {
            return true;
        }

        $dst = imagecreatetruecolor(imagesx($src), imagesy($src));
        $black = imagecolorallocate($dst, 0, 0, 0);
        imagecolortransparent($dst, $black);

        $black = imagecolorallocate($src, 0, 0, 0);
        imagecolortransparent($src, $black);

        imagecopy($dst, $src, 0, 0, 0, 0, imagesx($src), imagesy($src));
        imagedestroy($src);

        $src = $dst;

        return true;
    }
}

但现在坚持认为这个方块不想透明......

almost

2 个答案:

答案 0 :(得分:3)

imagerotate执行不力;我经常注意到错误/削减边缘。如果必须,您可以使用 24位透明PNG图像而不是透明GIF(PNG支持Alpha透明度,这意味着边缘将与HTML背景颜色很好地融合)。

该功能存在透明度问题,解决方法是添加两行:

<?php
$angle = (int) $_GET['a'];
$source = imagecreatefrompng(__DIR__ . DIRECTORY_SEPARATOR . 'direction1.png');
$rotation = imagerotate($source, $angle, imageColorAllocateAlpha($source, 0, 0, 0, 127));
imagealphablending($rotation, false); // handle issue when rotating certain angles
imagesavealpha($rotation, true);      // handle issue when rotating certain angles
header('Content-type: image/png');
imagepng($rotation);
imagedestroy($source);
imagedestroy($rotation);

结果:

result 0 to 359 degree

作为替代方案,我可以建议CSS transform吗?

img:nth-child(2) {
  transform: rotate(45deg);
}
img:nth-child(3) {
  transform: rotate(90deg);
}
img:nth-child(4) {
  transform: rotate(135deg);
}
<img src="http://i.stack.imgur.com/oZlZ9.png">
<img src="http://i.stack.imgur.com/oZlZ9.png">
<img src="http://i.stack.imgur.com/oZlZ9.png">
<img src="http://i.stack.imgur.com/oZlZ9.png">

答案 1 :(得分:1)

imagecreatefromgif()创建一个调色板图像而不是真彩色图像(因为这是GIF格式对图像进行编码的方式)。在具有调色板的图像上,透明度与真彩色图像不同,而您为$transparency计算的值无效。

解决方案是在旋转之前将$im转换为真彩色。函数imagepalettetotruecolor()执行此操作。从PHP 5.5开始提供。如果您遇到旧版本,那么您需要自己实现它。检查documentation页面上的最后一个示例,它已在那里实现,它也会处理透明度(它会在运行时遇到一些小错误)。