(PECL imagick 2.0.0)
Imagick::blurImage — Adds blur filter to image
Ta funkcja jest obecnie nieudokumentowana, dostępna jest jedynie lista jej argumentów.
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.
Zwraca TRUE w przypadku sukcesu.
Zgłasza wyjątek ImagickException w przypadku błędu.
Przykład #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;
?>