如果有一些图像无法打开,如何打开图像路径? PIL蟒蛇

时间:2016-11-09 02:35:00

标签: python image python-imaging-library

你可以看到9.jpg无法打开。 当我使用

 im = Image.open(imagepath)

错误: IOError:无法识别图像文件'C:\ Desktop \ Tom_Cruise \ images \ 9.jpg

那么如何忽略它或如何解决错误???

enter image description here

1 个答案:

答案 0 :(得分:1)

如何使用try-except块来绕过IOError

try:
    im = Image.open(imagepath)
except IOError:
    print '%s could not be opened' % imagepath