Help reading -debug... and ya, memory allocation problem.

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?".
Post Reply
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Post by magick »

Try adding -size 66x100 to your command line. This is a hint to the JPEG delegate library to return an image thumbnail so your conversion can occur in a small memory footprint.
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Post by magick »

For our web gallery we set
  • -limit memory 32 -limit map 64
to reduce the memory usage of the image conversion. Any large images are automatically cached to disk rather than memory.
Post Reply