如何使用PIL显示动画GIF?

时间:2016-04-08 06:49:26

标签: python python-2.7 python-imaging-library

from PIL import Image, ImageDraw,ImageFont
from win32api import GetSystemMetrics
Width = GetSystemMetrics(0)
Height = GetSystemMetrics(1)
im = Image.new("RGB",(Width,Height),"white")
img = Image.open('images/text.gif', 'r')
im.paste(img,(420,600))
im.show()

这里显示的图像是静态的(只显示一个text.gif实例)。有没有办法在pil中显示动画gif?先感谢您。

0 个答案:

没有答案