Friday, August 29, 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

Previous article
Next article
RELATED ARTICLES

Most Popular

Dominic
32249 POSTS0 COMMENTS
Milvus
80 POSTS0 COMMENTS
Nango Kala
6617 POSTS0 COMMENTS
Nicole Veronica
11790 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11838 POSTS0 COMMENTS
Shaida Kate Naidoo
6731 POSTS0 COMMENTS
Ted Musemwa
7011 POSTS0 COMMENTS
Thapelo Manthata
6689 POSTS0 COMMENTS
Umr Jansen
6701 POSTS0 COMMENTS