I'm currently trying to make a contact sheet (index print) and I'm not getting what I want.
I'm using ImageMagick 6.9.1-2 Q16 x86 2015-04-14 on Windows 7 starter.
My goal is have something like this
With the folder name in one of the top corners and up to 36 images in a grid. And I want it to print on a regular 4x6 print.
So far, this is what I've got
Code: Select all
montage -verbose -units PixelsPerInch -page 462x288 -density 300 -label "%f" -font Arial -pointsize 10 -background "#FFFFFF" -fill "gray" -define jpeg:size=200x200 -geometry 200x200+2+2 -auto-orient *.JPG contact.jpg
Any help would be greatly appreciated as my coding skills are very limited.