标签: python python-3.x pillow bytesio
我有一个Pillow Image对象图像,我尝试使用image.save(temp, format="jpg")
image.save(temp, format="jpg")
但是当我运行它时,它会在此行save_handler = SAVE[format.upper()]
save_handler = SAVE[format.upper()]
谢谢!
答案 0 :(得分:0)
格式称为jpeg,而不是jpg,因此只需使用:
jpeg
jpg
image.save(temp, format="jpeg")
有关可能的值(或PIL.Image.SAVE.keys())
PIL.Image.SAVE.keys()