I've read the BMP info and I can successfully use convert to achieve the desired result, but I can't seem to find a way to do the same using mogrify. I've got hundreds of images to convert, so mogrify batch conversion would be highly desirable....
This works:
Code: Select all
convert test1.png BMP3:test.bmp
Code: Select all
mogrify -format BMP3 test*.png
It seems that I need to use
Code: Select all
mogrify -format bmp test*.png
Any help greatly appreciated...