I think, I encountered a bug with Montage.
I use 8:6.9.7.4+dfsg-16 on a Debian "testing" system.
I want to build a tile set of 24 images.
Each image has the same properties
Code: Select all
identify boat_01_01.png
boat_01_01.png PNG 128x128 128x128+0+0 8-bit sRGB 7.89KB 0.000u 0:00.000
Code: Select all
montage boat*.png -tile 8x8 -background none tilset_01.png
Code: Select all
identify tilset_01.png
tilset_01.png PNG 1024x1008 1024x1008+0+0 16-bit sRGB 403KB 0.000u 0:00.000
In this case, images have been resized. But It shouldn't be.
I used Gimp to see the difference between the originals and the output.
To get a proper montage I use the geometry option to get the proper height
Code: Select all
montage boat*.png -tile 8x8 -geometry 128x128 -background none tilset_02.png
identify tilset_02.png
tilset_02.png PNG 1024x1024 1024x1024+0+0 8-bit sRGB 162KB 0.000u 0:00.000
This is the correct behavior we should expect.
Kind regards
Kao