Skip to content

Instantly share code, notes, and snippets.

@chriszarate
Created June 8, 2012 13:12
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chriszarate/2895540 to your computer and use it in GitHub Desktop.
Save chriszarate/2895540 to your computer and use it in GitHub Desktop.
Concatenate images with ImageMagick
# If you want to append images horizontally, use this command
convert image1.jpg image2.jpg image3.jpg +append result.jpg
# If you want to append them vertically, change the + to a -
convert image1.jpg image2.jpg image3.jpg -append result.jpg
# Source: http://snipplr.com/view/10360/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment