Open In App

PHP | Imagick motionBlurImage() Function

Improve
Improve
Like Article
Like
Save
Share
Report

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

Syntax:

bool Imagick::motionBlurImage( $radius, $sigma, $angle, $channel )

Parameters: This function accepts four parameters 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 automatically.
  • $sigma: This parameter is used to find the standard deviation of the Gaussian, in pixels.
  • $angle: This parameter apply the effect along this angle.
  • $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::motionBlurImage() function in PHP: 

Program: 

php




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


Output:

 motion blur image 

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


Last Updated : 16 May, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads