82
convert -append 1.jpg 2.jpg out.jpg

This command appends 1.jpg and 2.jpg horizontally. What is the command to do this vertically?

Tim
  • 2,377

3 Answers3

124

For vertical stacking (top to bottom):

convert -append 1.jpg 2.jpg out.jpg

For horizontal stacking (left to right):

convert +append 1.jpg 2.jpg out.jpg
Gareth
  • 19,080
21

Use -append to stack images top-to-bottom.

Use +append to stack images left-to-right.

Source: http://imagemagick.org/script/command-line-options.php#append

jox
  • 313
20

For latest imagemagick from V7 , the following is command

magick input1.jpg input2.jpg -append out.jpg
user981525
  • 201
  • 2
  • 2