PHP Conference Japan 2024

Imagick::blackThresholdImage

(PECL imagick 2, PECL imagick 3)

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

描述

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

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

?>

添加注释

用户贡献的注释 2 条注释

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

<?php

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

?>

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

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