How to montage ?

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
limannzerga
Posts: 2
Joined: 2014-02-13T01:48:41-07:00
Authentication code: 6789

How to montage ?

Post by limannzerga »

Hi all,

I would like to make a montage between 2 images, the first with a size (a*b pixels), the second with a smallest size (c*d) an a special location (e and f pixels).
I should use the geometry command, but i dont know how to handle it.

Thank you for the answers

Limann
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: How to montage ?

Post by snibgo »

It could be something like this, using two in-built images as sources:

Code: Select all

convert wizard: rose: -geometry +230+240 -composite c.png
snibgo's IM pages: im.snibgo.com
limannzerga
Posts: 2
Joined: 2014-02-13T01:48:41-07:00
Authentication code: 6789

Re: How to montage ?

Post by limannzerga »

Perfect !
Post Reply