Tiling the plane with a single small image (montage)
Posted: 2014-07-21T07:05:06-07:00
Hello all,
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:
But it already takes 20 seconds, and raising it to 256 takes a whooping 7 minutes ! Since I want to go higher than that, it's not a good solution.
Anybody can suggest a faster alternative ?
Thanks
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