1

我提到了这个问题的答案。我目前正在使用以下代码进行色调叠加:

function imagehue(&$image, $angle) {
if($angle % 360 == 0) return;
$width = imagesx($image);
$height = imagesy($image);

for($x = 0; $x < $width; $x++) {
    for($y = 0; $y < $height; $y++) {
        $rgb = imagecolorat($image, $x, $y);
        $r = ($rgb >> 16) & 0xFF;
        $g = ($rgb >> 8) & 0xFF;
        $b = $rgb & 0xFF;            
        $alpha = ($rgb & 0x7F000000) >> 24;
        list($h, $s, $l) = rgb2hsl($r, $g, $b);
        $h += $angle / 360;
        if($h > 1) $h--;
        list($r, $g, $b) = hsl2rgb($h, $s, $l);            
        imagesetpixel($image, $x, $y, imagecolorallocatealpha($image, $r, $g, $b, $alpha));
    }
  }
}

它适用于 JPG。但是此代码不适用于透明的 PNG 图像。这就是我为 PNG 图像调用此函数的方式:

header('Content-type: image/png');
**$image = imagecreatefrompng('image.png');**
imagehue($image, 180);
imagejpeg($image);

有谁知道我应该做些什么改变?

4

1 回答 1

2

这是因为您使用该imagejpeg功能,imagepng而是使用。如果您还希望它使用 alpha 透明度,请将其添加到您的代码中:

imagealphablending($image, false);
imagesavealpha($image, true);
于 2013-06-05T12:10:53.970 回答