Adaptively blur an image, then display to the browser.
<?php header('Content-type: image/jpeg');$image = new Imagick('test.jpg');$image->adaptiveBlurImage(5,3); echo $image;?>