Imagick::despeckleImage

(PECL imagick 2.0.0)

Imagick::despeckleImageReduces the speckle noise in an image

Opis

Imagick::despeckleImage ( void ) : bool

Reduces the speckle noise in an image while preserving the edges of the original image.

Zwracane wartości

Zwraca TRUE w przypadku sukcesu.

Błędy/Wyjątki

Zgłasza wyjątek ImagickException w przypadku błędu.

Przykłady

Przykład #1 Imagick::despeckleImage()

<?php
function despeckleImage($imagePath) {
    
$imagick = new \Imagick(realpath($imagePath));
    
$imagick->despeckleImage();
    
header("Content-Type: image/jpg");
    echo 
$imagick->getImageBlob();
}

?>

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top