I use image magick montage to create 'contact sheets' for my photography team. From time to time the total number of images exceeds the pixel dimension limitation and the script 'fails', creating no image. Here is my current code:
Code: Select all
montage -verbose -label %t -pointsize 25 -background '#FFFFFF' -tile 15x$contactSheetRows -fill 'black' -define jpeg:size=600x780 -geometry 600x780+40+150 -quality 90 -auto-orient $dailyImages.FullName E:\Contact_Sheet.jpg
In this thread (viewtopic.php?t=27973) user @snibgo claims 'Yes, ImageMagick montage will create as many output images as required', but that has not been my experience.
What am I missing?