我已经尝试过了:
from PIL import Image
im = Image.open('this.webp')
im.save('that.gif', 'gif', save_all=True)
这给了我这个错误
TypeError:&:'tuple'和'int'的不受支持的操作数类型
我的网站上有数百个webp图像,需要将它们转换为gif,因为Firefox不支持。 谢谢。
答案 0 :(得分:0)
在保存之前将背景设置为“无”。
im.info.pop('background', None)
感谢:https://github.com/python-pillow/Pillow/issues/2949#issuecomment-419422861