Imagick::blackThresholdImage

(PECL imagick 2, PECL imagick 3)

Imagick::blackThresholdImage将所有低于阈值的像素强制为黑色

说明

public Imagick::blackThresholdImage(混合类型 $threshold): 布尔值

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

?>

添加说明

用户贡献说明 2 条说明

4
Iddles
13 年前
您需要向此函数传递一个颜色

<?php

$img
->blackThresholdImage( "#FFFFFF" );

?>

例如,这会使任何不是纯白色的像素变黑。
1
elmer at web-axis dot net
15 年前
这是一个此函数的示例

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