pillow.Image.open() 对某些jpg文件报OSError
程序员文章站
2022-05-30 12:06:45
...
对于某些jpg文件,如:
使用windows图片查看器可以正常查看,但是使用Image.open(imagename)
时报OSError
.
from PIL import Image
imgname = 'test.jpg'
img = Image.open(imgname)
# OSError: cannot identify image file 'test.jpg'
参考PIL的API,Image.open(),
Raises:
IOError – If the file cannot be found, or the image cannot be opened and identified.
github 上issueBug: “IOError: cannot identify image file” with some JPG images #630,
如果jpg文件的头部不在jprg market table中,则会报OSError
。
上一篇: 进程 第四天(进程间通信)
下一篇: (三)OpenCV中的图像处理之直方图