Tuesday, December 9, 2025
HomeLanguagesPHP | Imagick sharpenImage() Function

PHP | Imagick sharpenImage() Function

The Imagick::sharpenImage() function is an inbuilt function in PHP which is used to sharpen an image. This function convolves the image with a Gaussian operator of the given radius and standard deviation. 

Syntax:

bool Imagick::sharpenImage( $radius, $sigma, $channel )

Parameters: This function accepts three parameter as mentioned above and described below:

  • $radius: This parameter is used to set the radius of the Gaussian, in pixels. Its not counting the center pixel. If radius value is zero it means radius will be chosen automagically.
  • $sigma: This parameter is used to find the standard deviation of the Gaussian, in pixels.
  • $channel: This parameter provides the channel constant that is valid for channel mode. More than one channel can be combined using bitwise operator. The defaults channel in Imagick function is Imagick::CHANNEL_DEFAULT.

Return Value: This function returns True on success. Below program illustrates the Imagick::sharpenImage() function in PHP: 

Program: 

php




<?php
 
// Create an Imagick object
$imagick = new Imagick(
 
// Use sharpenimage function
$imagick->sharpenimage(5, 1);
header("Content-Type: image/jpg");
 
// Display the output image
echo $imagick->getImageBlob();
?>


Output: 

sharpen image

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

RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32430 POSTS0 COMMENTS
Milvus
103 POSTS0 COMMENTS
Nango Kala
6804 POSTS0 COMMENTS
Nicole Veronica
11947 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12016 POSTS0 COMMENTS
Shaida Kate Naidoo
6939 POSTS0 COMMENTS
Ted Musemwa
7190 POSTS0 COMMENTS
Thapelo Manthata
6885 POSTS0 COMMENTS
Umr Jansen
6872 POSTS0 COMMENTS