閾値に満たないすべてのピクセルを黒にする
$threshold
Imagick::thresholdImage() と似ていますが、 これは閾値に満たないピクセルをすべて黒にし、その他のピクセルはそのままにします。
threshold
すべて黒にする閾値。
成功した場合に true を返します。
true
例1 Imagick::blackThresholdImage
<?php function blackThresholdImage($imagePath, $thresholdColor) { $imagick = new \Imagick(realpath($imagePath)); $imagick->blackthresholdimage($thresholdColor); header("Content-Type: image/jpg"); echo $imagick->getImageBlob(); } ?>