欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python 模块常见错误

程序员文章站 2022-03-25 20:39:51
...
  • PIL "image file is truncated"
from PIL import ImageFile
ImageFile.LOAD_TRUNCATED_IMAGES = True
  • PIL OSError: cannot write mode RGBA as JPEG,保存jpg图片时报错信息
if image.format == 'PNG':
    image = image.convert("RGB")
image.save('1.jpg')

 

相关标签: 开发周边