← rotateImageroundCorners →
Rotational blurs an image.
I have no idea how this is different from radialBlurImage. radialBlur is deprecated in ImageMagick
Example
function rotationalBlurImage($image_path, $rotation_angle, $channel)
{
$imagick = new \Imagick(realpath($image_path));
$imagick->rotationalBlurImage($rotation_angle, $channel);
header("Content-Type: image/jpeg");
echo $imagick->getImageBlob();
}