Combining Images to create a single image

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
jorma
Posts: 2
Joined: 2011-04-07T19:17:35-07:00
Authentication code: 8675308

Combining Images to create a single image

Post by jorma »

Hi Folks -

I am trying to create a single image from 8 different images, and wondering if someone could point me in the right direction. An example of the images I would like to combine are located here: http://jorma.com/misc/moon/ Essentially I would like to have each image added below the previous image to create a complete image of the moon. I was playing around with 'montage', but not able to get it. Any suggestions would be appreciated. Thanks!

- Jorma
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Combining Images to create a single image

Post by fmw42 »

convert image1.jpg image2.jpg ... imageN.jpg -append resultimage.

see -append http://www.imagemagick.org/script/comma ... php#append and http://www.imagemagick.org/Usage/layers/#append
jorma
Posts: 2
Joined: 2011-04-07T19:17:35-07:00
Authentication code: 8675308

Re: Combining Images to create a single image

Post by jorma »

Works perfect! Thanks!!!

- Jorma
Post Reply