如何用PHP隔离图像上只有一种颜色?

时间:2010-09-18 07:44:12

标签: php imagick gd2

是否可以在图像中留下(隔离)一种颜色? 目前我对绿色感兴趣:005d00

2 个答案:

答案 0 :(得分:2)

您可以使用gd的imagecolorat()功能 只需遍历每个像素,检查它是否是您想要的颜色,否则set将其变为黑色或白色或者您想要使用它做什么。

这是一个有效的例子:

function colorEquals($rgb_color, $hex_color)
{
    $r = ($rgb_color >> 16) & 0xFF;
    $g = ($rgb_color >> 8) & 0xFF;
    $b = $rgb_color & 0xFF;


    list($hr, $hg, $hb) = sscanf($hex_color, '%2s%2s%2s');
    $hr = hexdec($hr);
    $hg = hexdec($hg);
    $hb = hexdec($hb);

    return $r == $hr && $g == $hg && $b == $hb;
}

$width = 300;
$height = 300;

// create 300x300 image
$img = imagecreatetruecolor($width, $height);
// fill grey
$color = imagecolorallocate($img, 127, 127, 127);
imagefill($img, 0, 0, $color);

// set a square of pixels to 005d00
$your_color = imagecolorallocate($img, 0, 93, 0);
imagefilledrectangle($img, 10, 10, 100, 100, $your_color);

$white = imagecolorallocate($img, 255, 255, 255);

for($x = 0; $x < $width; ++$x)
{
    for($y = 0; $y < $height; ++$y)
    {
        $color = imagecolorat($img, $x, $y);
        if(!colorEquals($color, '005d00'))
        {
            // set it to white
            imagesetpixel($img, $x, $y, $white);
        }
    }
}

// output
header('Content-type: image/png');
imagepng($img);

答案 1 :(得分:1)

你可以通过命令行使用ImageMagick来实现它:

convert original.png -matte ( +clone -fuzz 1 -transparent #005d00 ) -compose DstOut -composite isolated.png

-fuzz命令可以从颜色中获取百分比差异,如果是特定的话,则删除模糊。

()括号需要在bash shell \(\)等中转义