5

I've got a few tens of thousands of images all of 2000 pixel width, and I would like to pile them up in one big image of summed up height and 2000 pixel width. I guess there must be a way to do that with imagemagick but I couldn't find a way to script it out for tens of thousands of images. Any suggestions?

2
  • 1
    Mosaic style? With each image a couple pixels across? Commented Jul 16, 2011 at 13:55
  • just one under the other, with spacing. Commented Jul 16, 2011 at 17:25

1 Answer 1

7

Sounds like a job for the montage command.

montage -tile 1 -geometry +0+0 *.jpg ../big.jpg 
1
  • works wonders, thx Commented Jul 16, 2011 at 17:25

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.