无法在python中打开图像文件

时间:2014-02-20 06:09:47

标签: python image file ioerror

import Image


imageFile = "C:\Users\Abhi\Desktop\cbir-p\images.jpg"
im1 = Image.open(imageFile)



Error: 
File "C:\Users\Abhi\Desktop\cbir-p\im1.py", line 5, in <module>
    im1 = Image.open(imageFile)
  File "C:\Python27\lib\site-packages\PIL\Image.py", line 2025, in open
    raise IOError("cannot identify image file")
IOError: cannot identify image file

帮帮我,我已经安装了PIL,Pillow,Opencv等所有必需的软件包。

1 个答案:

答案 0 :(得分:1)

嘿,这不是你的文件路径问题......

这是您在PIL中缺少的JPEG支持 这是我在这里解释的解决方案。 https://apple.stackexchange.com/questions/59718/python-imaging-library-pil-decoder-jpeg-not-available-how-to-fix

转到here下载lib libjpeg 包。 或者只是

brew install libjpeg

enter image description here