0

我这里有图片(透明PNG图片)

在此处输入图像描述

我想用蓝色改变,是否有任何功能或库类来改变我的形象?我知道有很多网站使用它们的功能来生成带颜色的透明 gif。

请帮我。

4

1 回答 1

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,生成的图像应该保留渐变。

参考:http ://www.php.net/manual/en/ref.image.php

于 2011-09-11T13:55:42.297 回答