您需要向此函数传递一种颜色
<?php
$img->blackThresholdImage( "#FFFFFF" );
?>
例如,这会使任何不是纯白色的像素变黑。
(PECL imagick 2, PECL imagick 3)
Imagick::blackThresholdImage — 强制所有低于阈值的像素变为黑色
类似于 Imagick::thresholdImage(),但强制所有低于阈值的像素变为黑色,而将所有高于阈值的像素保持不变。
阈值
低于此阈值的任何内容都将变为黑色
成功时返回 真
。
版本 | 描述 |
---|---|
PECL imagick 2.1.0 | 现在允许字符串表示颜色作为参数。以前的版本仅允许 ImagickPixel 对象。 |
示例 #1 Imagick::blackThresholdImage()
<?php
函数 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();
?>