I need to make contact sheets from a large number of image files that are in both jpg and tif formats. I discovered the mogrify command and found some helpful samples of how to run it. Initial tests using some jpg files went quite well. However, as I try to use this command to make contact sheets from tif's I do not meet with success.
The command I'm running is
Code: Select all
montage -verbose -label '%f' -font Helvetica -pointsize 10 -background '#000000' -fill 'gray' -define jpeg:size=240x240 -geometry 240x240+2+2 -tile 5x6 -auto-orient *.tif contact-sheet/contact-dark.jpg
When I run that, no contact-dark.jpg gets generated. The process begins, but finally exits with the message "montage: unable to extent pixel cache `No such file or directory' @ fatal/cache.c/CacheSignalHandler/3353."
So, what am I doing wrong? According to some reading I've done, this should work with tif's. But maybe what I read is wrong, and I need to convert those to jpg for this to workl? ImageMagick 6.8.8-4
Thanks, James