Page 1 of 1

Posted: 2006-11-08T23:08:45-07:00
by anthony
I think you need more specific info. Output format? image? etc...

Posted: 2006-11-12T19:56:19-07:00
by anthony
As a guess
convert input.bmp -colorspace grey -depth 8 -colors 256 output.bmp

Posted: 2006-11-12T19:57:34-07:00
by anthony
As a guess

Code: Select all

   convert input.bmp -colorspace gray \
                -quantize gray -depth 8 -colors 256 output.bmp
But as I am not a Windows used and as such do not have any experience with BMP, I can't be certain.