I have a series of smaller images from which I'm trying to build a larger one. I fiddled around quite a bit, but I'm not really getting it. I'm fighting with spacings, parameters in general and the biggest problem is probably the numbering of the tiles.
I try to explain what I'm intending to do:
I have 140 jpg's numbered from 0_[0-9].jpg to 13_[0-9].jpg. ImageMagick should put those images into 14 columns with 10 rows each, sewing them together seamlessly (like a photo) and with no loss of quality. For better visualization of this pattern I attached a picture.
I tried things like this. It's coming close, but misses pictures, parameters and of course it's only dealing with one row:
Code: Select all
montage [0-9]_1.jpg -tile 13x10 test.jpg
Regards
honeybee
Edit: I'm sorry, I'm using the latest version of ImageMagick (6.9.0-1 I guess?) on Win XP. The tiles are about 20kb and 256x256 px each with slight variations, but will come out as a perfect whole when stitched together.