PHP | Imagick waveImage() Function
The Imagick::waveImage() function is an inbuilt function in PHP which is used to create the wave filter in an image. This function is available in the version 6.2.9 or newer.
Syntax:
bool Imagick::waveImage( $amplitude, $length )
Parameters: This function accepts two parameters as mentioned above and described below:
- $amplitude: This parameter is used to set the amplitude of the wave.
- $length: This parameter is used to set the length of the wave.
Return Value: This function returns True on success.
Below programs illustrates the Imagick::waveImage() function in PHP:
Program:
<?php // Create an Imagick object $imagick = new Imagick( // Use waveImage function $imagick->waveImage(5, 20); header("Content-Type: image/jpg"); // Display the output image echo $imagick->getImageBlob(); ?> |
Output:

Related Articles:
Reference: http://php.net/manual/en/imagick.waveimage.php
Recommended Posts:
- PHP | Imagick clear() Function
- PHP | Imagick convolveImage() Function
- PHP | Imagick despeckleImage() Function
- PHP | Imagick flattenImages() Function
- PHP | Imagick gammaImage() Function
- PHP | Imagick cropThumbnailImage() Function
- PHP | Imagick implodeImage() Function
- PHP | Imagick averageImages() Function
- PHP | Imagick distortImage() Function
- PHP | Imagick getCopyright() Function
- PHP | Imagick evaluateImage() Function
- PHP | Imagick clampImage() Function
- PHP | Imagick affineTransformImage() Function
- PHP | Imagick pingImage() Function
- PHP | Imagick liquidRescaleImage() 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.



