Here's the command I'm using to create the strips. I use 7.0.6 to create old.bmp and 7.0.7 to create new.bmp
Code: Select all
"C:\Program Files\ImageMagick-7.0.6-Q16\magick.exe" icon1.png icon2.png +append -mosaic -type Palette -depth 8 -chop x15+0+15 BMP3:old.bmp
"C:\Program Files\ImageMagick-7.0.7-Q16\magick.exe" icon1.png icon2.png +append -mosaic -type Palette -depth 8 -chop x15+0+15 BMP3:new.bmp
"C:\Program Files\ImageMagick-7.0.7-Q16\magick.exe" identify old.bmp
old.bmp BMP3 32x15 32x15+0+0 8-bit sRGB 256c 1588B 0.000u 0:00.000
"C:\Program Files\ImageMagick-7.0.7-Q16\magick.exe" identify new.bmp
new.bmp BMP3 32x15 32x15+0+0 8-bit sRGB 1494B 0.000u 0:00.000
One odd (possibly unrelated) difference between the old and new images is that the new images use no compression, whereas the old ones used RLE. Even explicitly adding the option "-compress RLE" seems to have no effect on new images. That said, I'm not too bothered by the increase in some file sizes, as they were tiny to begin with. It's more the weird header that I'm worried about.