PHP |想象一下 contrastStretchImage()函数
Imagick::contrastStretchImage()函数是PHP中的一个内置函数,用于增强图像的对比度。此函数通过调整像素颜色以跨越可用颜色的整个范围来增强彩色图像的对比度。
句法:
bool Imagick::contrastStretchImage( float $black_point,
float $white_point, int $channel = Imagick::CHANNEL_DEFAULT)
参数:此函数接受三个参数,如上所述,如下所述:
- $black_point:此参数保存黑点。
- $white_point:此参数保存白点。
- $channel:此参数保存 Imagick 通道常量,提供任何对通道模式有效的通道常量。使用按位运算运算符可以组合多个通道。通道常量的默认值为 CHANNEL_DEFAULT。
返回值:此函数在成功时返回 TRUE。
下面的程序说明了PHP中的Imagick::contrastStretchImage()函数:
方案一:
contrastStretchImage(10, 20);
header("Content-Type: image/png");
// Display the output image
echo $imagick->getImageBlob();
?>
输出:
方案二:
contrastStretchImage(100, 50);
header("Content-Type: image/png");
// Display the output image
echo $imagick->getImageBlob();
?>
输出:
方案 3:
contrastStretchImage(5000, 100);
header("Content-Type: image/png");
// Display the output image
echo $imagick->getImageBlob();
?>
输出:
参考: https://www. PHP.net/manual/en/imagick.contraststretchimage。 PHP