Imagick::spreadImage

(PECL imagick 2.0.0)
Randomly displaces each pixel in a block
bool Imagick::spreadImage ( float $radius )

Special effects method that randomly displaces each pixel in a block defined by the radius parameter.

Parameters:
radius

Special effects method that randomly displaces each pixel in a block defined by the radius parameter.

Returns:

Returns TRUE on success.

Exception:

Throws ImagickException on error.

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

?>

doc_php
2016-02-24 16:01:27
Comments
Leave a Comment

Please login to continue.