Which partially solve the problem:
Code: Select all
mogrify -format bmp -define bmp:format=bmp3 test*.png
Which config file should I use and how to achieve this?
Code: Select all
mogrify -format bmp -define bmp:format=bmp3 test*.png
Code: Select all
mogrify -format bmp -define bmp:format=bmp3 test*.png
Code: Select all
convert rose: BMP3:rose.bmp
Thanks for the correction. But I do not think IM will go backwards for its default.snibgo wrote:I think konstantin is saying that "-define bmp:format=bmp3" works, but he doesn't want to keep typing it. He wants this to be the default (for BMP outputs).
Code: Select all
#!/bin/sh
# tobmp3 [files]
mogrify -format bmp -define bmp:format=bmp3 $*
Yes.snibgo wrote:I think konstantin is saying that "-define bmp:format=bmp3" works, but he doesn't want to keep typing it. He wants this to be the default (for BMP outputs).