How to make CEGUI support gif format?
Posted: Wed Jul 21, 2010 06:34
by JJChicken
does CEGUI0.62 support gif format?
if not how to support this format?
Re: How to make CEGUI support gif format?
Posted: Wed Jul 21, 2010 14:07
by Jamarr
You can use an image codec based on devIL, or some other image library, that supports GIFs to use them in CEGUI. But animating the GIFs is probably another matter; I am not that familiar with GIF, but I assume an image-library that can load them has some kind of gif-update function to cycle frames. So all you need to do is update a CEGUI::Texture with the new frame, each cycle.
Re: How to make CEGUI support gif format?
Posted: Thu Jul 22, 2010 08:33
by JJChicken
thank you!
I will try it