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?先感谢您。