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代わりに使用します。また、アルファ透明度でも動作させたい場合は、これをコードに追加します。

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