Wednesday, July 3, 2024
HomeLanguagesPhpPHP | Imagick motionBlurImage() Function

PHP | Imagick motionBlurImage() Function

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

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

Nicole Veronica Rubhabha
Nicole Veronica Rubhabha
A highly competent and organized individual DotNet developer with a track record of architecting and developing web client-server applications. Recognized as a personable, dedicated performer who demonstrates innovation, communication, and teamwork to ensure quality and timely project completion. Expertise in C#, ASP.Net, MVC, LINQ, EF 6, Web Services, SQL Server, MySql, Web development,
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments