📜  Python PIL |图像.tell()

📅  最后修改于: 2022-05-13 01:55:48.010000             🧑  作者: Mango

Python PIL |图像.tell()

PIL 是Python Imaging Library,它为Python解释器提供了图像编辑功能。 Image模块提供了一个同名的类,用于表示 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 图像。

使用的图像:

# 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