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()
Here the image displayed is static(just one instance of text.gif is displayed).Is there any way to display animated gif in pil? Thank you in advance.