Using the convert
command, we can concatenate img1.png
with img2.png
:
convert img1.png img2.png +append full_img.png
However, the command above adds img2.png
to the right of img1.png
.
How to add img2.png
at bottom of img1.png
using the convert
command?
Just:
See the manpage: