Return to Snippet

Revision: 10135
at December 9, 2008 12:45 by webonomic


Initial Code
#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

Initial URL
http://jaredprins.squarespace.com/ubducted/2008/12/9/image-magick-kicks-ass.html

Initial Description
You can use this code in Bash or Windows CMD / Command prompt (although you'll have the change the comment character from # to :: for the windows prompt)

Initial Title
ImageMagick: Append many images into one

Initial Tags
images

Initial Language
Bash