(PECL imagick 2.0.0)
Imagick::blurImage — Adds blur filter to image
Към момента тази функция не е документирана; наличен е единствено списъкът с аргументите й.
Adds blur filter to image. Optional third parameter to blur a specific channel.
Blur radius
Standard deviation
The Channeltype constant. When not supplied, all channels are blurred.
Връща TRUE при успех.
Хвърля ImagickException при грешка.
Example #1 Using Imagick::blurImage():
Blur an image, then display to the browser.
<?php
header('Content-type: image/jpeg');
$image = new Imagick('test.jpg');
$image->blurImage(5,3);
echo $image;
?>