Sunday, 3 January 2010

Creating a photo montage


HOWTO Photo Montage
Originally uploaded by Gary Edwards

You will need Bash and GraphicsMagick.

# mkdir output

# ls | awk 'NR%15==0{ cmd = "cp \047"$0"\047 ./output";system(cmd)}'

( NR%15 if you want every 15th image)

# cd output

# gm montage -tile 10x11 -geometry 354x236+0+0 *.JPG joined.jpg

More details may be coming soon...

0 comments: