ImageMagick: Append many images into one


/ Published in: Bash
Save to your folder(s)

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)


Copy this code and paste it in your HTML
  1. #If you want to append images horizontally, use this command
  2. convert image1.jpg image2.jpg image3.jpg +append result.jpg
  3.  
  4. #If you want to append them vertically, change the + to a -
  5. convert image1.jpg image2.jpg image3.jpg -append result.jpg

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

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.