Open In App

Python PIL | Image.tell()

Last Updated : 26 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 Image module provides a class with the same name which is used to represent a PIL image. The module also provides a number of factory functions, including functions to load images from files, and to create new images.

Image.tell()Returns the current frame number.

Syntax: Image.tell()

Parameters:
image– take an gif image.

Returns: An Image object.

Image Used:




   
  
# importing image object from PIL
from PIL import Image
  
# creating gif image object 
img = Image.open(r"C:\Users\System-Pc\Desktop\time.gif"
img1 = img.tell() 
print(img1)


Output:

0

Another Example:Taking another gif image.

Image Used:




   
  
# importing image object from PIL
from PIL import Image
  
# creating gif image object 
img = Image.open(r"C:\Users\System-Pc\Desktop\skyhigh.gif"
img1 = img.tell() 
print(img1)


Output:

0

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

Similar Reads