这是一个关于此函数的示例
<?php
$img = new Imagick();
$img->readImage($image_file_name);
$img->whiteThresholdImage('grey');
$img->writeImage($thumb_file_name);
$img->clear();
$img->destroy();
?>
(PECL imagick 2, PECL imagick 3)
Imagick::whiteThresholdImage — 将所有超过阈值的像素强制为白色
类似于 Imagick::ThresholdImage(),但将所有超过阈值的像素强制为白色,而将所有低于阈值的像素保持不变。
threshold
成功时返回 true
。
版本 | 描述 |
---|---|
PECL imagick 2.1.0 | 现在允许使用表示颜色的字符串作为参数。之前的版本只允许使用 ImagickPixel 对象。 |
示例 #1 Imagick::whiteThresholdImage()
<?php
function whiteThresholdImage($imagePath, $color) {
$imagick = new \Imagick(realpath($imagePath));
$imagick->whiteThresholdImage($color);
header("Content-Type: image/jpg");
echo $imagick->getImageBlob();
}
?>
这是一个关于此函数的示例
<?php
$img = new Imagick();
$img->readImage($image_file_name);
$img->whiteThresholdImage('grey');
$img->writeImage($thumb_file_name);
$img->clear();
$img->destroy();
?>