Imagemagick creating one big image by piling up thousand of images of the same width

image manipulationimagemagick

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?

Best Answer

Sounds like a job for the montage command.

montage -tile 1 -geometry +0+0 *.jpg ../big.jpg
Related Question