Please help: convert to 8 bit grayscale
- anthony
- Posts: 8883
- Joined: 2004-05-31T19:27:03-07:00
- Authentication code: 8675308
- Location: Brisbane, Australia
I think you need more specific info. Output format? image? etc...
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
https://imagemagick.org/Usage/
- anthony
- Posts: 8883
- Joined: 2004-05-31T19:27:03-07:00
- Authentication code: 8675308
- Location: Brisbane, Australia
As a guess
convert input.bmp -colorspace grey -depth 8 -colors 256 output.bmp
convert input.bmp -colorspace grey -depth 8 -colors 256 output.bmp
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
https://imagemagick.org/Usage/
- anthony
- Posts: 8883
- Joined: 2004-05-31T19:27:03-07:00
- Authentication code: 8675308
- Location: Brisbane, Australia
As a guess
But as I am not a Windows used and as such do not have any experience with BMP, I can't be certain.
Code: Select all
convert input.bmp -colorspace gray \
-quantize gray -depth 8 -colors 256 output.bmp
Anthony Thyssen -- Webmaster for ImageMagick Example Pages
https://imagemagick.org/Usage/
https://imagemagick.org/Usage/