(PECL imagick 2.0.0)
Imagick::despeckleImage — Reduces the speckle noise in an image
Reduces the speckle noise in an image while preserving the edges of the original image.
Retorna TRUE
no sucesso.
Lança ImagickException em caso de erro.
Exemplo #1 Imagick::despeckleImage()
<?php
function despeckleImage($imagePath) {
$imagick = new \Imagick(realpath($imagePath));
$imagick->despeckleImage();
header("Content-Type: image/jpg");
echo $imagick->getImageBlob();
}
?>