PDA

View Full Version : [Python] How to load animated GIF as separate frames?



crazyfuturamanoob
October 22nd, 2008, 02:57 PM
file = open( "file.bmp" )

data = file.read()

file.close()

That gives me a string containing the image. But an animated gif has more than one images.

So how to load animated gif's all images as separate strings?


Thanks.