Imagick::linearStretchImage

(PECL imagick 2.0.0)

Imagick::linearStretchImageStretches with saturation the image intensity

Описание

bool Imagick::linearStretchImage ( float $blackPoint , float $whitePoint )

Stretches with saturation the image intensity.

Список параметров

blackPoint

The image black point

whitePoint

The image white point

Возвращаемые значения

В случае успешной работы возвращает TRUE.

Примеры

Пример #1 Imagick::linearStretchImage()

<?php
function linearStretchImage($imagePath$blackThreshold$whiteThreshold) {
    
$imagick = new \Imagick(realpath($imagePath));
    
$pixels $imagick->getImageWidth() * $imagick->getImageHeight();
    
$imagick->linearStretchImage($blackThreshold $pixels$whiteThreshold $pixels);

    
header("Content-Type: image/jpg");
    echo 
$imagick->getImageBlob();
}

?>

Коментарии

Автор:
"Black" and "white" points here are pixel counts from the darkest and brightest ends respectively. To turn the darkest 90% of the pixels black, and the brightest 5% white, use the following:

<?php
$im 
= new Imagick ("some image.png");
list (
$width$height) = array_values ($im->getImageGeometry ());
$px $width $height;
$im->modulateImage (1000100);
$im->linearStretchImage ($px 0.9$px 0.05);
$im->writeImage ("temp.jpg");
?>
2014-06-11 15:54:54
http://php5.kiev.ua/manual/ru/imagick.linearstretchimage.html

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