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