Now for "combining multiple images in the same folder and join them onto a canvas"
Code: Select all
montage *.png -size 400x400 -geometry 0 -tile %rep%x tiled.png
Code: Select all
for %x in (*png) do montage %x -size 400x400 -geometry 0 -tile %rep%x tiled.png
Soo... how do I get this to:
a) take all images (tiles) in a folder into consideration for the "tiled.png" out file
b) do it from 001.png to... f.e. 056.png ?
- Thanks in advanceso images like: 1 2 3 4 5 6 7 8
should be like
[1][2][3][4][5]
[6][7][8][9][1]
[2][3][4][5][6]
(until the canvas is filled to the given size)
(sorry that this is a very similar question to an already exisiting one, hate being inefficient like this, but -montage and -tile were of no help... yet)
(PS: multiple -append and +appends are nice, but I would like to avoid it, as it would probably require recalculations for a specific x and y of the canvas each time)