I'm trying to do something simple: tile a large area with a small image.
The following command works for putting together 128x128 tiny 2x2 images in a 256x256 square:
Code: Select all
NB=128; time montage -tile $NBx$NB $( for (( c=1; c<=$((NB*NB)); c++)) ; do echo "Tiny.png" ; done ) -geometry 2x2+0+0 Tiling.png
Anybody can suggest a faster alternative ?
Thanks