Insert image to the right bottom

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
ghostmansd
Posts: 24
Joined: 2011-03-21T09:27:47-07:00
Authentication code: 8675308

Insert image to the right bottom

Post by ghostmansd »

Dear users, could you give advice, how to combine images? I have two images; width1=width2 and height1=height2; IM must insert image2 to the right bottom of image1 and save output as image3. Thanks!
ghostmansd
Posts: 24
Joined: 2011-03-21T09:27:47-07:00
Authentication code: 8675308

Re: Insert image to the right bottom

Post by ghostmansd »

This is like as if you have two pages of book and make one big page.
Bonzo
Posts: 2971
Joined: 2006-05-20T08:08:19-07:00
Location: Cambridge, England

Re: Insert image to the right bottom

Post by Bonzo »

So if I understand you correctly you want to join two images the same size side by side.

Code: Select all

convert image1 image2 +appened image3
ghostmansd
Posts: 24
Joined: 2011-03-21T09:27:47-07:00
Authentication code: 8675308

Re: Insert image to the right bottom

Post by ghostmansd »

Thank you very much! That's correctly what I need!
Post Reply