Python PIL Image.tell()

Python PIL Image.tell()

PIL是Python图像库,它为Python解释器提供了图像编辑功能。图像模块提供了一个同名的类,用来表示一个PIL图像。该模块还提供了一些工厂函数,包括从文件加载图像和创建新图像的函数。

Image.tell() 返回当前帧数。

语法: Image.tell()

参数:
image – 取一个gif图像。

返回:一个图像对象。

使用的图片:
Python PIL Image.tell()

# 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)

输出:

0

另一个例子:取另一个gif图像。

使用的图片:
Python PIL Image.tell()

# 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)

输出:

0

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程