This commit is contained in:
cclauss 2016-06-24 10:31:35 +02:00 committed by GitHub
parent acf1c8559b
commit 0ca6db9aae

View File

@ -19,7 +19,7 @@ Extracting frames from an animation
index = 1
for frame in ImageSequence.Iterator(im):
frame.save("frame%d.png" % index)
index = index + 1
index += 1
The :py:class:`~PIL.ImageSequence.Iterator` class
-------------------------------------------------