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