PHP GD - 在图像上添加颜色层

时间:2017-12-30 23:11:13

标签: php image colors overlay gd

我想使用gd在php中的图像上添加颜色层。

这是图片:Image

我想用这种颜色覆盖它:#ABD0D2

我快速了解了它应该如何看待最后。 请记住,图像应该仍然是透明的 enter image description here

到目前为止,我有这段代码:

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

imagesavealpha($img, true);
imagefill($img, 0, 0, imagecolorallocatealpha($img, 0, 0, 0, 127));

// make overlay with new color???

imagepng($img, 'new.png');
imagedestroy($img);

1 个答案:

答案 0 :(得分:0)

您可以创建一个填充目标颜色的新图像,然后将两者合并:

$img = imagecreatefrompng('image.png');
$w = imagesx($img);
$h = imagesy($img);
imagesavealpha($img, true);

$img2 = imagecreatetruecolor($w, $h);
imagefill($img2, 0, 0, imagecolorallocatealpha($img, 0xAB, 0xD0, 0xD2, 64));

imagecopy($img, $img2, 0, 0, 0, 0, $w, $h);

imagepng($img, 'new.png');
imagedestroy($img);
imagedestroy($img2);

结果:

enter image description here

我不清楚你想要如何保持透明度(因为你的预期结果图像不透明)所以在上面的代码中我设置了'掩码&# 39;颜色为50%不透明度。