Page 1 of 1

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

Posted: 2019-05-23T05:27:19-07:00
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

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

Posted: 2019-05-23T06:01:52-07:00
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