Open In App

PHP | Imagick sharpenImage() Function

Last Updated : 30 Mar, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

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


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads