我试图更改png图像的颜色,以便透明区域仍保持透明,并为图像的其余部分添加颜色,这就是我尝试过的颜色
<?php
$im = imagecreatefrompng('2.png');
$w = imagesx($im);
$h = imagesy($im);
$om = imagecreatetruecolor($w,$h);
for ($x = 0; $x < $w; $x++) {
for ($y = 0; $y < $h; $y++) {
$rgb = imagecolorat($im, $x, $y);
$colors = imagecolorsforindex($im, $rgb);
$orgb = imagecolorallocate($om,$colors['alpha'],$colors['alpha'],$colors['alpha']);
imagesetpixel($om,$x,$y,$orgb);
}
}
header('Content-Type: image/png');
imagepng($om);
imagedestroy($om);
imagedestroy($im);
?>
它产生的图像如下: 的之前
后
我仍然没有准确的想法如何获得png图像的高亮区域并给它们一种颜色,如黄色或粉红色,而不会失去透明度,这样只有非透明区域才能保持透明
答案 0 :(得分:7)
在这种情况下,您应该能够使用调色板而不是遍历每个像素:
<?PHP
$myRed = 255;
$myGreen = 0;
$myBlue = 0;
$im = imagecreatefrompng('http://s25.postimg.org/ll0dzblan/image.png');
imageAlphaBlending($im, true);
imageSaveAlpha($im, true);
if (imageistruecolor($im))
{
$sx = imagesx($im);
$sy = imagesy($im);
for ($x = 0; $x < $sx; $x++)
{
for ($y = 0; $y < $sy; $y++)
{
$c = imagecolorat($im, $x, $y);
$a = $c & 0xFF000000;
$newColor = $a | $myRed << 16 | $myGreen << 8 | $myBlue;
imagesetpixel($im, $x, $y, $newColor );
}
}
} else {
$numColors = imagecolorstotal($im);
$transparent = imagecolortransparent($im);
for ($i=0; $i < $numColors; $i++)
{
if ($i != $transparent)
imagecolorset($im, $i, $myRed, $myGreen, $myBlue, $myAlpha);
}
}
header('Content-Type: image/png');
imagepng($im);
imagedestroy($im);
?>