Imagick::thresholdImage

(PECL imagick 2, PECL imagick 3)

Imagick::thresholdImage根据阈值更改各个像素的值

描述

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

根据每个像素的强度与阈值的比较结果,更改各个像素的值。结果是一个高对比度的双色图像。

参数

threshold

channel

返回值

成功时返回 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