(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;
?>