Skip to content

Instantly share code, notes, and snippets.

@FestivalBobcats
Created June 8, 2012 23:09
Show Gist options
  • Save FestivalBobcats/2898588 to your computer and use it in GitHub Desktop.
Save FestivalBobcats/2898588 to your computer and use it in GitHub Desktop.
Produce one big image from a folder of images
# 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