php8.5
Home/ Manual/ imagick / imagick/ Imagick::linearStretchImage

Imagick::linearStretchImage

PHP function Edit on GitHub ✎

(PECL imagick 2, PECL imagick 3)

Stretches with saturation the image intensity

Description

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

Stretches with saturation the image intensity.

Parameters

blackPoint

The image black point

whitePoint

The image white point

Return Values

Success

Examples

Imagick::linearStretchImage()

php
<?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();
}

?>

Source: reference/imagick/imagick/linearstretchimage.xml · from the official PHP manual (php/doc-en)