📅  最后修改于: 2020-11-07 07:50:42             🧑  作者: Mango
Python Imaging Library(PIL)包含对图像序列(动画格式)的一些基本支持。 FLI / FLC,GIF和一些实验格式是受支持的序列格式。 TIFF文件也可以包含多个帧。
打开序列文件,PIL自动加载序列中的第一帧。要在不同的帧之间移动,可以使用seek和tell方法。
from PIL import Image
img = Image.open('bird.jpg')
#Skip to the second frame
img.seek(1)
try:
while 1:
img.seek(img.tell() + 1)
#do_something to img
except EOFError:
#End of sequence
pass
raise EOFError
EOFError
正如我们在上面看到的,当序列结束时,您将获得EOFError异常。
最新版本库中的大多数驱动程序仅允许您搜索下一帧(如上例所示),以倒退文件,您可能必须重新打开它。
class ImageSequence:
def __init__(self, img):
self.img = img
def __getitem__(self, ix):
try:
if ix:
self.img.seek(ix)
return self.img
except EOFError:
raise IndexError # end of sequence
for frame in ImageSequence(img):
# ...do something to frame...