您需要向此函数传递一个颜色
<?php
$img->blackThresholdImage( "#FFFFFF" );
?>
例如,这会使任何不是纯白色的像素变黑。
(PECL imagick 2, PECL imagick 3)
Imagick::blackThresholdImage — 将所有低于阈值的像素强制为黑色
类似于 Imagick::thresholdImage(),但将所有低于阈值的像素强制为黑色,而将所有高于阈值的像素保持不变。
threshold
低于该阈值的任何内容都将变为黑色
成功时返回 true
。
版本 | 说明 |
---|---|
PECL imagick 2.1.0 | 现在允许使用表示颜色的字符串作为参数。之前的版本仅允许使用 ImagickPixel 对象。 |
示例 #1 Imagick::blackThresholdImage()
<?php
function blackThresholdImage($imagePath, $thresholdColor) {
$imagick = new \Imagick(realpath($imagePath));
$imagick->blackthresholdimage($thresholdColor);
header("Content-Type: image/jpg");
echo $imagick->getImageBlob();
}
?>
这是一个此函数的示例
<?php
$img = new Imagick();
$img->readImage($image_file_name);
$img->blackThresholdImage('grey');
$img->writeImage($thumb_file_name);
$img->clear();
$img->destroy();
?>