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?".
Resource requirements for a typical image is 4 x width x height. The resource can be memory or disk depending on your resource limits. Add -limit memory 2MB, for example, to limit the amount of allowed memory to 2MB. If this limit is exceeded, pixels are pushed to disk. The tradeoff is that disk access is 1000x slower than memory access. See http://www.imagemagick.org/script/archi ... .php#cache for details.
magick wrote:Resource requirements for a typical image is 4 x width x height.
It's 4 times width times height times bytes_per_sample. bytes_per_sample depends on how you built ImageMagick. It's 1 in a Q8 build, 2 in a Q16, 4, in a Q32, etc.