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?".
I need to use convert -append specifing a very long list of files (more than one hundred). Is it possible to pass such list to the convert command as a file?
For example, somewhat similar to the following line:
Please note that ALL these methods will read in all the images into memory before creating a new image. That means it will require just under 2 times the memory needed for all the input images.
Yes, I have already tried this solution. But for some unexpected reason, the images are not read in order*, so that in result image I find, for example, file99.png before image1.png. I need the list file just to override the order the images are passed to convert command.
* or they are ordered, but I can not control the order they are written into the folder directory.