I'm a newbie to Imagick. I'm trying to smooth the edges of this Radar image (http://www.infinitymedialabs.com/weather/image.php). The image will be overlaid on a google map.

Is there a way to change the image so the pixels are more "softened" and rounded vs. "hard" edged? I'm running 6.2.8 ImageMagick

<?php

header('Content-type: image/png');

$image = new Imagick('./radar.png');


$image->blurImage(0,8);
echo $image;

?>
link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.