我这里有图像(透明的PNG图像)
我想用蓝色改变,是否有任何功能或库类来改变我的形象?我知道有很多网站使用它们的功能来生成带有颜色的透明gif。
请帮帮我。
答案 0 :(得分:1)
$img = imagecreatefromgif("put here your image path");
// Grab all color indeces for the given image.
$indeces = array();
for ($y = 0; $y < $imgHeight; ++$y) {
for ($x = 0; $x < $imgWidth; ++$x) {
$index = imagecolorat($img, $x, $y);
if (!in_array($index, $indeces)) {
$indeces[] = $index;
}
}
}
foreach ($indeces as $index) {
// Grab the color info for the index.
$colors = imagecolorsforindex($img, $index);
// Here, you would make your color transformation.
$red = $colors['red'];
$green = $colors['green'];
$blue = $colors['blue'];
$alpha = $colors['alpha'];
// Update the old color to the new one.
imagecolorset($img, $index, $red, $green, $blue, $alpha);
}
这是未经测试的代码。实际的颜色转换由您决定,但只要您在所有凹槽中使用相同的变换并且不使用alpha进行混淆,结果图像应保留渐变。