PHP | Imagick embossImage() Function Last Updated : 26 Aug, 2019 Comments Improve Suggest changes Like Article Like Report The Imagick::embossImage() function is an inbuilt function in PHP which is used to return a grayscale image with a three-dimensional effect. This function convolves the image with a Gaussian operator of the given radius and standard deviation. Syntax: bool Imagick::embossImage( $radius, $sigma ) Parameters: This function accepts two parameters as mentioned above and described below: $radius: This parameter stores the value of the radius of the effect. $sigma: This parameter stores the value of the sigma of the effect. Return Value: This function returns True on success. Original Image: Below program illustrates the Imagick::embossImage() function in PHP: Program: php <?php // require_once('path/vendor/autoload.php'); header('Content-type: image/png'); // Create an Imagick object $image = new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-16.png'); // Use embossImage function $image->embossImage(7, 3); // Display output image echo $image; ?> Output: Reference: http://php.net/manual/en/imagick.embossimage.php Comment More infoAdvertise with us Next Article PHP | Imagick embossImage() Function S sarthak_ishu11 Follow Improve Article Tags : Misc Technical Scripter Web Technologies PHP Image-Processing PHP-function PHP-Imagick +3 More Practice Tags : Misc Similar Reads PHP | Gmagick embossimage() Function The Gmagick::embossimage() function is an inbuilt function in PHP which is used to return a grayscale image with a three-dimensional effect. This function uses the Gaussian operator of the given radius and standard deviation to filter the image.Syntax:Â Â Gmagick Gmagick::embossimage( $radius, $sigma 2 min read PHP | Imagick borderImage() Function The Imagick::borderImage() function is an inbuilt function in PHP which is used to draw the border in an image. This function creates the border surrounded to the image in the given color. Syntax: bool Imagick::borderImage( $bordercolor, $width, $height ) Parameters: This function accepts three para 1 min read PHP | Imagick flopImage() Function The Imagick::flopImage() function is an inbuilt function in PHP which is used to create a horizontal mirror image. Syntax: bool Imagick::flopImage( void ) Parameters: This function does not accept any parameter. Return Value: This function returns True on success. Below programs illustrate the Imagi 1 min read PHP | Imagick edgeImage() Function The Imagick::edgeImage() function is an inbuilt function in PHP which is used to enhance the edges within the image. It enhances the edges with the help of a convolution filter of the given radius. Syntax: bool Imagick::edgeImage( $radius ) Parameters: This function accepts single parameter $radius 1 min read PHP | Imagick frameImage() Function The Imagick::frameImage() function is an inbuilt function in PHP which is used to add a three-dimensional border around the image. Syntax: bool Imagick::frameImage( $color, $width, $height, $inner_bevel, $outer_bevel ) Parameters: This function accepts five parameters as mentioned above and describe 2 min read Like