(PECL imagick 2.0.0)
Imagick::linearStretchImage — Étire la saturation de l'intensité de l'image
$blackPoint
, float $whitePoint
)Étire la saturation de l'intensité de l'image.
blackPoint
Le point noir de l'image.
whitePoint
Le point blanc de l'image.
Retourne TRUE
en cas de succès.
Exemple #1 Exemple avec 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();
}
?>