(PECL imagick 2, PECL imagick 3)
Imagick::randomThresholdImage — 创建高对比度、双色图像
$low
, float $high
, int $channel
= Imagick::CHANNEL_DEFAULT): bool根据每个像素的强度与阈值比较来更改各个像素的值。结果是高对比度、双色图像。如果 Imagick 是针对 ImageMagick 6.2.9 或更高版本编译的,则此方法可用。
如果成功,则返回 true
。
示例 #1 Imagick::randomThresholdImage()
<?php
function randomThresholdimage($imagePath, $lowThreshold, $highThreshold, $channel) {
$imagick = new \Imagick(realpath($imagePath));
$imagick->randomThresholdimage(
$lowThreshold * \Imagick::getQuantum(),
$highThreshold * \Imagick::getQuantum(),
$channel
);
header("Content-Type: image/jpg");
echo $imagick->getImageBlob();
}
?>