Hello
How can i convert a 1-bit BMP to a 24-bit JPEG ?
(IM v 6.5.7 - 8bit)
Converting to 24 bits
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: Converting to 24 bits
not sure what you gain by that as it still will be only white and black, but try
convert image.bmp -depth 8 -type truecolor image.jpg
convert image.bmp -depth 8 -type truecolor image.jpg
Re: Converting to 24 bits
thank you.
it works fine without -depth 8 too.
it works fine without -depth 8 too.