So I created contact sheet with image thumbnails, their filename and image sizes with the following command:
Code: Select all
montage -verbose -label '%wx%h\n%t' -font Helvetica -pointsize 10 -background '#FFFFFF' -fill 'gray' -geometry 200x200+2+2 -auto-orient *.jpg out.jpg
Adding -define jpeg:size=200x200 helps, however then incorrect image's sizes are added to label (width x height), and it's important that I have ORIGINAL image sizes on the final contact sheet.
Any help would be greatly appreciate!