Python Imaging Library Handbook |
The ImageSequence module contains a wrapper class that lets you iterate over the frames of an image sequence.
import Image, ImageSequence im = Image.open("animation.fli") index = 1 for frame in ImageSequence.Iterator(im): frame.save("frame%d.png" % index) index = index + 1
ImageSequence.Iterator(image) => Iterator instance
Creates an Iterator instance that lets you loop over all frames in a sequence.
The Iterator class implements the [] operator:
You can call this operator with integer values from 0 and upwards. The iterator raises an IndexError exception when there are no more frames.