如何使用Python将WebP图像转换为Gif?

时间:2018-08-25 10:33:54

标签: python python-imaging-library gif webp

我已经尝试过了:

from PIL import Image
im = Image.open('this.webp')
im.save('that.gif', 'gif', save_all=True)

这给了我这个错误

  

TypeError:&:'tuple'和'int'的不受支持的操作数类型

我的网站上有数百个webp图像,需要将它们转换为gif,因为Firefox不支持。 谢谢。

1 个答案:

答案 0 :(得分:0)

在保存之前将背景设置为“无”。

im.info.pop('background', None)

感谢:https://github.com/python-pillow/Pillow/issues/2949#issuecomment-419422861