Created
June 8, 2012 23:09
-
-
Save FestivalBobcats/2898588 to your computer and use it in GitHub Desktop.
Produce one big image from a folder of images
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# requires ImageMagick. very simple to install | |
# quick and simple image montaging | |
collage() { | |
# convert all images to png | |
# squash them into one grid-based .png | |
# cleanup | |
convert ./* MON%02d.png && montage ./MON*.png -geometry +0+0 __montage.png && rm ./MON* | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment