I would like to extract (mainly access) frames of a gif file.
A simple gif with 320*240*(270 frame) = 1.7mb but when I extract it and try to use it, it just hit the roof of java's heap space and I simply run out of memory.
I tried to save images to my local disk which it is fine, but saving it takes a little bit longer to show a preview.
I used this https://gist.github.com/devunwired/4479231 to get the frames.
Now I am looking to use the gif file itself and access each frame with random access concept.
GIF Decoders I think use the previous image data, and then it needs for me to read all N-1 frames to reach fram N. :(
Please help.