I am working on weather data on Windows 10 (7.0.7-35 Q16 x64 2018-05-21). This is part of a web based severe weather analysis app I am developing.
One of my files is a large (approx 12,000x10,000 pixel) .GIF image. It is very blocky when overlaid on my map because of the nature of the data. I am using the following command to blur the edges :
Code: Select all
magick test.gif -blur 0x0.7 test_blurred.gif
Here is the image without the blurring applied (overlaid on a map, so you can see how it looks.)
Are there any tips or tricks to soften the edges? My only options seem to be 1.) Reduce the resolution, then run the blur command, or 2.) Get a faster server, or 3.) Both.
I am not an expert with IM, but I am hoping there is an optimal way to do this - like another command that will soften the edges that I am unaware of etc.
Thank you for any help. Everyone is very helpful here so I prefer this than resorting to stack overflow.
David