imagefilter的半灰度()

时间:2013-12-24 06:20:07

标签: php gd

我知道PHP的GD库可以对图像应用灰度滤镜,例如:

$img = imagecreatefrompng('test.png');
$img = imagefilter($img, IMG_FILTER_GRAYSCALE);
imagepng($img, 'test_updated.png');

是否有任何方法可以应用一半的灰度效果(类似于CSS3的filter: grayscale(50%);)?

我从这个answer读到,灰度滤波器实际上是R,G&的缩减。 B频道。我可以在PHP中自定义自己的灰度过滤器吗?

参考:imagefilter()

1 个答案:

答案 0 :(得分:1)

  

是否有任何方法可以应用一半的灰度效果   (类似于CSS3的滤镜:灰度(50%);)?

找到类似于您正在寻找的脚本..

<?php

function convertImageToGrayscale($source_file, $percentage)
{
    $outputImage = ImageCreateFromJpeg($source_file);
    $imgWidth    = imagesx($outputImage);
    $imgHeight   = imagesy($outputImage);

    $grayWidth  = round($percentage * $imgWidth);
    $grayStartX = $imgWidth-$grayWidth;

    for ($xPos=$grayStartX; $xPos<$imgWidth; $xPos++)
    {
        for ($yPos=0; $yPos<$imgHeight; $yPos++)
        {
            // Get the rgb value for current pixel
            $rgb = ImageColorAt($outputImage, $xPos, $yPos);

            // extract each value for r, g, b
            $rr = ($rgb >> 16) & 0xFF;
            $gg = ($rgb >> 8) & 0xFF;
            $bb = $rgb & 0xFF;

            // Get the gray Value from the RGB value
            $g = round(($rr + $gg + $bb) / 3);

            // Set the grayscale color identifier
            $val = imagecolorallocate($outputImage, $g, $g, $g);

            // Set the gray value for the pixel
            imagesetpixel ($outputImage, $xPos, $yPos, $val);
        }
    }
    return $outputImage;
}

$image = convertImageToGrayscale("otter.jpg", .25);

header('Content-type: image/jpeg');
imagejpeg($image);
?>

看看是否有效。我发现here