coldume / imagecraft

A reliable and extensible PHP image manipulation library
MIT License
101 stars 28 forks source link

Animated GIF size limits #24

Open caedmonm opened 7 years ago

caedmonm commented 7 years ago

Is there some hard limit on frames / size of an animated GIF? I've experimented changing the memory_limit in PHP but it makes no difference. Depending on the length of the animation I seem to hit a limit when the output file size is just under 2.5Mb

caedmonm commented 5 years ago

MemoryRequirementListener.php#68

Change: if (10000000 < $finalPixels || 570000000 < $totalPixels || $peak > $limit) To: if ($peak > $limit)

fixed it for me.