2024 年 PHP 大会日本站

Imagick::whiteThresholdImage

(PECL imagick 2, PECL imagick 3)

Imagick::whiteThresholdImage强制所有高于阈值的像素变为白色

描述

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

类似于 Imagick::ThresholdImage(),但强制所有高于阈值的像素变为白色,而低于阈值的像素保持不变。

参数

阈值

返回值

成功时返回 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
16 年前
这是一个函数示例

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