Open In App

Python PIL | ImageSequence.Iterator()

Last Updated : 02 Aug, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

PIL is the Python Imaging Library which provides the python interpreter with image editing capabilities. The ImageSequence module contains a wrapper class that lets you iterate over the frames of an image sequence.

ImageSequence.Iterator() This class implements an iterator object that can be used to loop over an image sequence. You can use the [ ] operator to access elements by index. This operator will raise an IndexError if you try to access a nonexistent frame.

Syntax: PIL.ImageSequence.Iterator(im)

Parameters:
im – An image object.

Returns: An Image object.

Image Used:




   
  
# importing Image class from PIL package 
from PIL import Image, ImageSequence
  
# creating a object 
im = Image.open(r"C:\Users\System-Pc\Desktop\home.png")
index = 1
for frame in ImageSequence.Iterator(im):
    frame.save("frame % d.png" % index)
    index = index + 1
  
im.getdata()
im.show()


Output:

Another Example:Here we use another image .jpg extension.

Image Used:




   
  
# importing Image class from PIL package 
from PIL import Image, ImageSequence
  
# creating a object 
im = Image.open(r"C:\Users\System-Pc\Desktop\tree.jpg")
index = 1
for frame in ImageSequence.Iterator(im):
    frame.save("frame % d.jpg" % index)
    index = index + 1
  
im.getdata()
im.show()


Output:



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads