Imagick::linearStretchImage
(PECL imagick 2, PECL imagick 3)
Imagick::linearStretchImage — Estica com saturação a intensidade da imagem
Descrição
Estica com saturação a intensidade da imagem.
Parâmetros
blackPoint
-
O ponto preto da imagem.
whitePoint
-
O ponto branco da imagem.
Valor Retornado
Retorna true
em caso de sucesso.
Exemplos
Example #1 Exemplo de 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();
}
?>