What I want to do is essentially:
Code: Select all
montage img-*.png spritesheet.png
Now, I could just add an extra 0 to img-1.png through img-9.png so that I would have img-01.png, img-02.png, ... but this is a bit of a hassle and in this case I would have to do it several times. I've read that it's possible to use a text file containing a list of files, but then I would need to create a correctly ordered list, which would be even more time consuming as far as I know. I've also tried:
Code: Select all
montage img-[0-9].png img-[10-25].png spritesheet.png
(I'm running Imagemagick 6.9.1 under Windows 7.)