Sunday, November 16, 2025
HomeLanguagesPHP | Imagick embossImage() Function

PHP | Imagick embossImage() Function

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 
  
// require_once('path/vendor/autoload.php'); 
  
header('Content-type: image/png');
  
// Create an Imagick object
$image = new Imagick(
  
// Use embossImage function
$image->embossImage(7, 3);
  
// Display output image
echo $image;
?>


Output:

Reference: http://php.net/manual/en/imagick.embossimage.php

RELATED ARTICLES

Most Popular

Dominic
32402 POSTS0 COMMENTS
Milvus
95 POSTS0 COMMENTS
Nango Kala
6768 POSTS0 COMMENTS
Nicole Veronica
11919 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11990 POSTS0 COMMENTS
Shaida Kate Naidoo
6897 POSTS0 COMMENTS
Ted Musemwa
7149 POSTS0 COMMENTS
Thapelo Manthata
6850 POSTS0 COMMENTS
Umr Jansen
6841 POSTS0 COMMENTS