Python PIL创建GIF失败

时间:2018-11-13 16:32:20

标签: python python-imaging-library

我正尝试使用PIL创建gif,如下所述: http://www.pythoninformer.com/python-libraries/pillow/creating-animated-gif/

它们显示的代码将一堆图像“名称”保存为gif:

# Open all the frames
images = []

for n in names:
    frame = Image.open(n)
    images.append(frame)

# Save the frames as an animated GIF
images[0].save('anicircle.gif',
               save_all=True,
               append_images=images[1:],
               duration=100,
               loop=0)

但是,当保存gif时,它仅保存一张图像,我在做什么错呢? 我在python 2.7中使用PIL版本1.1.7

1 个答案:

答案 0 :(得分:1)

我认为您的代码没有任何问题。我会检查您使用的枕头版本。

from PIL import Image
Image.PILLOW_VERSION

append_images是在枕头3.4.0中添加的,因此您至少要使用该版本。