Python PIL | Image.tell() Last Updated : 26 Aug, 2019 Summarize Comments Improve Suggest changes Share Like Article Like 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: Python3 1== # 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: Python3 1== # 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 Comment More infoAdvertise with us Next Article Python PIL | Image.split() method S Sunitamamgai Follow Improve Article Tags : Python Python-pil Practice Tags : python Similar Reads Python PIL | ImageDraw.Draw.text() PIL is the Python Imaging Library which provides the python interpreter with image editing capabilities. The ImageDraw module provide simple 2D graphics for Image objects. You can use this module to create new images, annotate or retouch existing images, and to generate graphics on the fly for web u 2 min read Python PIL | Image.save() method 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, 3 min read Python PIL | Image.seek() Method 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, 1 min read Python PIL | Image.split() method PIL is the Python Imaging Library which provides the python interpreter with image editing capabilities. Image.split() method is used to split the image into individual bands. This method returns a tuple of individual image bands from an image. Splitting an âRGBâ image creates three new images each 1 min read Python PIL | Image.quantize() method 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, 1 min read Python PIL | Image.getdata() 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, 2 min read Like