How to combine multiple images

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
TeslaS
Posts: 1
Joined: 2014-06-10T05:05:16-07:00
Authentication code: 6789

How to combine multiple images

Post by TeslaS »

How to combine multiple images taking into consideration area they overlay. For example, I assume ImageMagic can align multiple images like this:
Image. How to make images to be aligned taking into account the context? In this example I need to get the image of web site as would browser show. How to do it?
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: How to combine multiple images

Post by snibgo »

TeslaS wrote:In this example I need to get the image of web site as would browser show. How to do it?
The following might work:

Code: Select all

convert somepage.html out.png
For me, it complains that html2ps is missing.

If you know the coordinate offsets, use "-geometry" before "-composite".
snibgo's IM pages: im.snibgo.com
Post Reply