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?".
I need to use ImageMagick to create a motion blur which should be almost identical to the effect in Paint.NET
Eg.
Although I'm having a bit of a problem. I'm using the following command except it blurs the entire image and not the region, plus I've tried playing with the options but I can't get it it to render anything similar to the effect in Paint.NET.
what version of IM are you using? the following works for me on 6.4.2-5 Q16
convert logo: -region 55x55+430+90 -motion-blur 20x65535+45 tmp.png
does a 20 pixel asymmetric linear blur of the region around the big star on the hat at a 45 degree angle
convert logo: -region 55x55+430+90 -motion-blur 0x20+45 tmp1.png
does an asymmetric gaussian blur
Note:
1) convert syntax usually needs the input image right after "convert"
2) It also looks like -region needs to be specified right after the input as when I do