Hi,
I'm searching a (commandline) tool where I could paste some jpg files vertically together just like this:
------
| A |
------ , and
------
| B |
------ , to one new jpg:
------
| A |
------
| B |
------
with cmd line tool montage I got something similar just horizontally, but without the original size of the jpg's. Thank you for your help.
BTW: I would like to thank ImageMagick for great convert tool, and their awesome work: Thanks.
concat jpgs vertically one after the other
Re: concat jpgs vertically one after the other
append should do it:
Code: Select all
exec("/usr/local/bin/convert -background white -gravity Center A.jpg B.jpg -append output.jpg");
Re: concat jpgs vertically one after the other
Yihaaa, Yes, this is why I'm impressed on those great cmd line tools. Thanks again!