(PECL imagick 2.0.0)
Imagick::thresholdImage — 閾値にもとづいて個々のピクセルの値を変更する
$threshold
[, int $channel
= Imagick::CHANNEL_ALL
] )個々のピクセルの輝度を閾値と比較し、その色を変更します。 変換結果は、コントラストの高い 2 色の画像となります。
threshold
channel
成功した場合に TRUE
を返します。
例1 Imagick::thresholdImage()
<?php
function thresholdimage($imagePath, $threshold, $channel) {
$imagick = new \Imagick(realpath($imagePath));
$imagick->thresholdimage($threshold * \Imagick::getQuantum(), $channel);
header("Content-Type: image/jpg");
echo $imagick->getImageBlob();
}
?>