PHP Conference Japan 2024

Imagick::thresholdImage

(PECL imagick 2, PECL imagick 3)

Imagick::thresholdImage基于阈值更改单个像素的值

描述

public Imagick::thresholdImage(float $threshold, int $channel = Imagick::CHANNEL_DEFAULT): bool

基于每个像素的强度与阈值的比较,更改单个像素的值。结果是高对比度的双色图像。

参数

阈值

通道

返回值

成功时返回 true

示例

示例 #1 Imagick::thresholdImage()

<?php
function thresholdimage($imagePath, $threshold, $channel) {
$imagick = new \Imagick(realpath($imagePath));
$imagick->thresholdimage($threshold * \Imagick::getQuantum(), $channel);
header("Content-Type: image/jpg");
echo
$imagick->getImageBlob();
}

?>

添加注释

用户贡献的注释 1 条注释

php t traction dot de
12 年前
getQuantumRange() 在这里可能很有用

<?php
$i
= new Imagick($imageFile);
$max = $i->getQuantumRange();
$max = $max["quantumRangeLong"];
$i->thresholdImage(0.77 * $max);
?>
To Top