Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
you need to take the mask and make it binary. then blur the mask a little with a linear ramp blur, then make the ramp taper to cut out the outside part of the blur.
Here are two ways to do that. You can adjust the -blur 1x65000 (change the 1 to 0.5 or 2 or whatever) as desired.
fmw42 wrote:you need to take the mask and make it binary. then blur the mask a little with a linear ramp blur, then make the ramp taper to cut out the outside part of the blur.
Here are two ways to do that. You can adjust the -blur 1x65000 (change the 1 to 0.5 or 2 or whatever) as desired.
You could try using a feathering blur, of the alpha channel combined with the original channel to ensure fully-transparent pixels don't become partially transparent http://www.imagemagick.org/Usage/blur/#feathering