I have written a processing application that uses around 9 gif animations. I am using gifAnimation library for loading and playing the animations. I am facing "OutOfMemory" issue when I run this application.
I have set the maximum available memory to 1024 MB in Processing preferences.
Currently, in the entire application I load the animation when it is required and that loaded animation remains in the memory till the program ends.
I had also tried deleting the amination object when its not required by calling system.gc(). But this also din not work.