Skip to content

Instantly share code, notes, and snippets.

@stefanschmidt
Created July 9, 2015 17:03
Show Gist options
  • Save stefanschmidt/0305ddecd3274dbf2049 to your computer and use it in GitHub Desktop.
Save stefanschmidt/0305ddecd3274dbf2049 to your computer and use it in GitHub Desktop.
Horizontally or vertically concatenate images
# depends on Imagemagick (available via Homebrew)
# horizontal concatenation
convert +append img1.png img2.png img3.png out.png
# vertical concatenation
convert -append img1.png img2.png img3.png out.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment