Search found 4 matches
- 2012-12-11T12:04:50-07:00
- Forum: Bugs
- Topic: Imagemagick Cannot Write Indexed BMP
- Replies: 6
- Views: 6557
Re: Imagemagick Cannot Write Indexed BMP
That appears to be the case in my situation. Removing '-type palette' and '-remap' does not affect the output as long as I specify BMP3 as the output type. This still does appear to change the resultant colormap (Unused colors are stripped) but retains the BMP type as still being indexed. Perfectly ...
- 2012-12-11T09:01:06-07:00
- Forum: Bugs
- Topic: Imagemagick Cannot Write Indexed BMP
- Replies: 6
- Views: 6557
Re: Imagemagick Cannot Write Indexed BMP
Moving +append to after the input images fixes that. I'm going to play around with -remap and -type palette to see what is ideal for my case.
Thanks again for the info!
Thanks again for the info!
- 2012-12-10T21:43:48-07:00
- Forum: Bugs
- Topic: Imagemagick Cannot Write Indexed BMP
- Replies: 6
- Views: 6557
Re: Imagemagick Cannot Write Indexed BMP
Thanks for the response! 'convert in.bmp -type palette BMP3:out.bmp' and 'convert in.bmp -type palette BMP2:out.bmp' work for simple examples but not for more complex operations like: 'convert +append img0.bmp img1.bmp img2.bmp -type palette BMP3:newimg.bmp' Where imgN.bmp are all indexed bitmaps ...
- 2012-12-10T19:34:58-07:00
- Forum: Bugs
- Topic: Imagemagick Cannot Write Indexed BMP
- Replies: 6
- Views: 6557
Imagemagick Cannot Write Indexed BMP
Imagemagick will no longer create BMP images with an indexed color map. In 6.6.9-7 if I had an indexed BMP file and ran a convert operation, the result would be another indexed BMP file. In 6.7.7-10 the resulting BMP is *always* a non-indexed version. Same results with 6.8.0-8. Steps to reproduce ...