Imagick::whiteThresholdImage

(PECL imagick 2, PECL imagick 3)

Imagick::whiteThresholdImage将所有超过阈值的像素强制为白色

描述

public Imagick::whiteThresholdImage(混合 $threshold): 布尔值

类似于 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();
}

?>

添加注释

用户贡献的注释 1 条注释

elmer at web-axis dot net
15 年前
这是一个关于此函数的示例

<?php
$img
= new Imagick();
$img->readImage($image_file_name);
$img->whiteThresholdImage('grey');
$img->writeImage($thumb_file_name);
$img->clear();
$img->destroy();
?>
To Top