PHP | Imagick implodeImage() Function
The Imagick implodeImage() function is an inbuilt function in PHP which is used to create a new image as a copy.
Syntax:
bool Imagick::implodeImage( $radius )
Parameters: This function accepts single parameter radius which holds the radius of the implode.
Return Values: This function returns True on success.
Errors/Exceptions: This function throws ImagickException on error.
Below program illustrates the Imagick implodeImage() function in PHP:
Program:
<?php // Create new Imagick object $imagick = new Imagick( // Use Imagick::implodeImage() function to the image $imagick->implodeImage(0.0001); header("Content-Type: image/png"); // Display the output image echo $imagick->getImageBlob(); ?> |
Output:

Reference: https://www.php.net/manual/en/imagick.implodeimage.php
Recommended Posts:
- PHP | Gmagick implodeimage() Function
- PHP | Imagick flipImage() Function
- PHP | Imagick linearStretchImage() Function
- PHP | Imagick getImageGamma() Function
- PHP | Imagick getImageColorspace() Function
- PHP | Imagick brightnessContrastImage() Function
- PHP | Imagick levelImage() Function
- PHP | Imagick identifyFormat() Function
- PHP | Imagick charcoalImage() Function
- PHP | Imagick chopImage() Function
- PHP | Imagick getImageColors() Function
- PHP | Imagick cycleColormapImage( ) Function
- PHP | Imagick liquidRescaleImage() Function
- PHP | Imagick pingImage() Function
- PHP | Imagick affineTransformImage() 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.



