Loading...
Logo
Processing Forum
Is there any way to display an animated GIF file, or break up the frames, in processing.js?  I know there is a library in processing for this, but I haven't found anything for processing.js.

Replies(3)

Disclaimer: I haven't used much of Processing.js, so I am not the most knowledgeable...
Have you tried a simple loadImage() and image()? With luck, it can work if the browser supports it.
Otherwise, breaking down the Gif binary data is doable but is likely to be hard and slow.
You better use a desktop tool to decompose the animation in several images and to concatenate them in a PNG strip (faster to load than a bunch of separate images), then to display each part in succession.
I did try that; it displays the first frame of the animation as if it were any other image.  I would break down the animation with a separate application, but the nature of what I'm working on means that the gifs used will change too frequently for a separate tool to be efficient.
Animated GIF's do not work natively in Processing.js. You will need the individual frames in separate images or use some form of spritesheet handling class function.

There will be a spritesheet handler class available for taking an image with several frames of an animation in it and return back an array of a PImage for you to iterate through in a sketch as you want soon.

I'm releasing a basic 2D game framework on the P.JS repo in a few weeks that has this spritemap handler class in it.