How to combine images side by side with ImageMagick Windows command line?

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
QuickBooksDev
Posts: 1
Joined: 2019-05-23T05:15:29-07:00
Authentication code: 1152

How to combine images side by side with ImageMagick Windows command line?

Post by QuickBooksDev »

Just downloaded IM and need to combine images with modification to get front, back and maybe the side into one image.

First need to do this in the command line (Windows 10) to see if the output image can be used elsewhere as expected then to be put into a VB.Net app.

I expect that the front and back be adjacent and maybe the side under it.

i.e.
Front Back
Side

I tried using the -append but that did a
Front
Back

I need it side by side.

Is there a way of doing this?

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

Re: How to combine images side by side with ImageMagick Windows command line?

Post by snibgo »

See the documentation http://www.imagemagick.org/script/comma ... php#append . "-append" does top-to-bottom and "+append" does left-to-right. So:

Code: Select all

magick 1.png 2.png +append 3.png -append out.png
snibgo's IM pages: im.snibgo.com
Post Reply