14

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?

0

1 Answer 1

24

Just:

convert img1.png img2.png -append  full_img.png

See the manpage:

    -append         append an image sequence top to bottom (use +append for left to right)
1
  • 1
    Preserve the quality: convert -quality 100 img1.png img2.png -append full_img.png Commented Dec 10, 2021 at 11:53

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.