php - 设置图像中每个像素的alpha

时间:2018-03-04 20:58:59

标签: php gd alpha

我想使用php gd函数设置图像中每个像素的alpha值。

到目前为止我有这个:

$src = imagecreatefrompng('image.png');

$w = imagesx($src);
$h = imagesy($src);

$alpha = 204;

for ($x = 0; $x < $w; $x++) {
    for ($y = 0; $y < $h; $y++) {
        // set $alpha for each pixel in $src
    }
}

imagepng($src);
imagedestroy($src);

1 个答案:

答案 0 :(得分:0)

Alpha必须定义为0和127.然后你必须使用imagealphablending()imagesavealpha()来保存和使用alpha。

$src = imagecreatefrompng('image.png');

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

$w = imagesx($src);
$h = imagesy($src);

$alpha = round(204/255*127); // convert to [0-127]

for ($x = 0; $x < $w; $x++) {
    for ($y = 0; $y < $h; $y++) {

        // get current color (R, G, B)
        $rgb = imagecolorat($src, $x, $y);
        $r = ($rgb >> 16) & 0xff;
        $g = ($rgb >> 8) & 0xff;
        $b = $rgb & 0xf;

        // create new color
        $col = imagecolorallocatealpha($src, $r, $g, $b, $alpha);

        // set pixel with new color
        imagesetpixel($src, $x, $y, $col);
    }
}
imagepng($src);
imagedestroy($src);