python存储jpg图片出错解决方法
Python的出错信息:
解决方法:
安装pillow模块即可解决
pip install pillow
图片的打开与显示
from PIL import Image img=Image.open('d:/dog.png') img.show()
虽然使用的是Pillow,但它是由PIL fork而来,因此还是要从PIL中进行import. 使用open()函数来打开图片,使用show()函数来显示图片。
更多Python知识,请关注:云海天python教程网!!
来源:PY学习网:原文地址:https://www.py.cn/article.html