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?".
"convert" reads all the images into memory before processing them. It does this because it is designed for operations that combine images in various ways. As your processing operates in each image independently, you can use "mogrify", or put "convert" into a shell "for" loop to process only one file at a time.