Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to composite a gif of ~ 4200 png images. Each image is 25kb large. 25k times 4200 = 102MB.

convert -delay 1  `ls file-*|sort -n -t - -k 2 ` animation.gif 

Why is there a memory allocation failure?

convert(282) malloc: *** mmap(size=16777216) failed (error code=12)
*** error: can't allocate region
*** set a breakpoint in malloc_error_break to debug
convert: MemoryAllocationFailed `Cannot allocate memory' @ fatal/image.c/AcquireImageInfo/337.

How can I change the limits of convert to complete the job successfully?

share|improve this question

closed as off topic by Guffa, Pent Ploompuu, Florent, Julius, Kjuly Oct 21 '12 at 9:05

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.