Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
command. However, I have not found any that provide instruction on how to create a contact sheet from multiple directories or even a recursive directory. Is anyone aware of how to perform this action?
command. However, I have not found any that provide instruction on how to create a contact sheet from multiple directories or even a recursive directory. Is anyone aware of how to perform this action?
Depending on your OS, you should be able to use something like "dir" or "ls" or "forfiles" to generate a list of the images you want to use. Those system commands typically have flags to recurse sub-directories. Redirect the output of those commands to a text file. Then you can run your "montage" command, and where you would normally put the names of the image files you can put the name of that text file list preceded by an "@" sign.
In my post above, I was thinking of one montage per directory. But I think GeeMack is correct, that the requirement is for one montage that includes multiple directories, so GeeMack has the solution.