Page 1 of 1

How to concatenate 2 images

Posted: 2010-02-08T02:37:01-07:00
by 6martina6
Hi all,
I'd like to know if it is possible to concatenate 2 images (img1.jpg, img2.jpg) in one single image.
My 2 images have size 350x250. I'd like to concatenate them to have an image of 700x250.
Is there any function to achieve this?
Thank you very much

Re: How to concatenate 2 images

Posted: 2010-02-08T05:42:04-07:00
by snibgo
I'd use the montage command, with a suitable geometry to get the gap between the images.

Re: How to concatenate 2 images

Posted: 2010-02-08T11:15:41-07:00
by fmw42
convert image1 image2 +append result

see http://www.imagemagick.org/script/comma ... php#append

Re: How to concatenate 2 images

Posted: 2010-02-09T05:25:37-07:00
by 6martina6
That's great! Thanks a lot!