PHP | Imagick spreadImage() Function
The Imagick::spreadImage() function is an inbuilt function in PHP which randomly displaces each pixel in a block. It is a special effects method that randomly displaces each pixel in a block defined by the radius parameter.
Syntax:
bool Imagick::spreadImage( $radius )
Parameters: This function accepts single parameter $radius which is used to set the radius to dispatch each pixel in an image.
Return Value: This function returns True on success.
Errors/Exceptions: This function throws ImagickException on error.
Below program illustrates the Imagick::spreadImage() function in PHP:
Program:
<?php // Create an Imagick object $imagick = new Imagick( // Use spreadImage function $imagick->spreadImage(5); header("Content-Type: image/jpg"); // Display the output image echo $imagick->getImageBlob(); ?> |
Output:

Related Articles:
Reference: http://php.net/manual/en/imagick.spreadimage.php
Recommended Posts:
- PHP | Gmagick spreadimage() Function
- PHP | Imagick setImageMatte() Function
- PHP | Imagick gammaImage() Function
- PHP | Imagick randomThresholdImage() Function
- PHP | Imagick queryFonts() Function
- PHP | Imagick radialBlurImage() Function
- PHP | Imagick appendImages() Function
- PHP | Imagick current() Function
- PHP | Imagick rotationalBlurImage() Function
- PHP | Imagick modulateImage() Function
- PHP | Imagick getInterlaceScheme() Function
- PHP | Imagick getImageTicksPerSecond() Function
- PHP | Imagick getImageSignature() Function
- PHP | Imagick cropImage() Function
- PHP | Imagick getImageRenderingIntent() Function
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



