Imagick::thresholdImage

(PECL imagick 2.0.0)

Imagick::thresholdImageChanges the value of individual pixels based on a threshold

Description

bool Imagick::thresholdImage ( float $threshold [, int $channel = Imagick::CHANNEL_ALL ] )

Changes the value of individual pixels based on the intensity of each pixel compared to threshold. The result is a high-contrast, two color image.

Parameters

threshold

channel

Return Values

Returns TRUE on success.

Коментарии

getQuantumRange() can be handy here:

<?php
$i 
= new Imagick($imageFile);
$max $i->getQuantumRange();
$max $max["quantumRangeLong"]; 
$i->thresholdImage(0.77 $max);
?>
2012-06-29 10:25:11
http://php5.kiev.ua/manual/ru/imagick.thresholdimage.html

    Поддержать сайт на родительском проекте КГБ