anthony wrote: You mentioned having problems with -monochrome, not -ordered dither.
That is correct. However, I am experimenting with both methods.
anthony wrote: What version of IM are you using?
Whatever is the latest available for Windows. I just downloaded it about a week ago.
anthony wrote: PS: why are you overlaying you image onto blue? Why not just doCode: Select all
convert image_new -background blue -flatten image_flattened
Thanks!
Now I've got this:
Code: Select all
convert %InName% ( -channel A -ordered-dither 2x1 ) ( -compose CopyOpacity -composite ) %OutName%
convert %OutName% ( -background blue -flatten ) %OutName%
convert %OutName% ( -transparent blue ) %OutName%
The reason I want it all on one line is, that with three lines it takes almost 10mins to run the above batch file over a directory full of images. Having it all on one line runs faster.