PHP GIF / PNG True Colorize фильтр, который сохраняет яркость и альфа - PullRequest
3 голосов
/ 23 ноября 2010

Я уже некоторое время работаю над сценарием, чтобы изменить цвета файлов GIF и PNG, который работает лучше, чем цветовой фильтр PHP, который не сохраняет яркость. Я придумал это, но это не совсем правильно работает:

$filename = "images/sprites/".$_GET['sprite'].".png";
    $im = imagecreatefrompng($filename);
    $nim = imagecreate( imagesx($im), imagesy($im) );
    $background = imagecolorallocate($nim, 255, 0, 255);

    $size = getimagesize($filename);

    for($y = 0; $y < imagesy($nim); $y++) {
        for($x = 0; $x < imagesx($nim); $x++) {
            $rgb = imagecolorat($im, $x, $y);
            $colors = imagecolorsforindex($im, $rgb);
            $mods = explode("x",$_GET['color']);

            $colors['red']   = ($colors['red'] / 8 + (255 - ((255 - $mods[0] - $colors['red']) * 2))) / 2;
            $colors['green'] = ($colors['red'] / 8 + (255 - ((255 - $mods[1] - $colors['green']) * 2))) / 2;
            $colors['blue']  = ($colors['red'] / 8 + (255 - ((255 - $mods[2] - $colors['blue']) * 2))) / 2;

            $r = $colors['red'];
            $g = $colors['green'];
            $b = $colors['blue'];

            if($r < 0) $r = 0;
            if($g < 0) $g = 0;
            if($b < 0) $b = 0;
            if($r > 255) $r = 255;
            if($g > 255) $g = 255;
            if($b > 255) $b = 255;

            if(!isset($color[$r.$g.$b])) {
                $color[$r.$g.$b] = imagecolorallocate($nim, $r, $g, $b);
            }

            imagesetpixel($nim, $x, $y, $color[$r.$g.$b]);
        }
    }

    imagecolortransparent($nim, 1);
    header('Content-Type: image/png');
    imagepng($nim);

Ответы [ 2 ]

4 голосов
/ 23 ноября 2010

Звучит так, как будто вы хотите получить оттенки серого. Это поддерживает прозрачность ...

http://www.exorithm.com/algorithm/view/duotone_image

0 голосов
/ 23 ноября 2010

Попробуйте с этими функциями после $im = imagecreatefrompng($filename);

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

И используйте imagecreatetruecolor ():

$nim = imagecreatetruecolor ( imagesx($im), imagesy($im) );
...