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')
上一篇: react路由
下一篇: React路由的理解与使用