Tiling/Montaging Huge Images
Posted: 2018-11-03T06:37:14-07:00
Platform: Ubuntu 16
ImageMagick Version: 6.7.8-9
I have several large images i need to turn into one gigantic image.
Currently i've been testing the montage command with 4x 40,000 x 40,000 Images tiles in a 2x2 grid (so resulting output is 80,000px square) using the command:
I have 27GB of RAM on the AWS instance i'm working with, and IM seems to top out at 90.6% usage of this with low CPU usage (6-10%). It's been working for about 2 hours now.
Is there a better and faster way to achieve this?
Many thanks for your time
ImageMagick Version: 6.7.8-9
I have several large images i need to turn into one gigantic image.
Currently i've been testing the montage command with 4x 40,000 x 40,000 Images tiles in a 2x2 grid (so resulting output is 80,000px square) using the command:
Code: Select all
montage image1.jpg image2.jpg image3.jpg image4.jpg -tile 2x2 -geometry +0+0 tiled_output.jpg
Is there a better and faster way to achieve this?
Many thanks for your time