im = Image.open(imagepath)
错误: IOError:无法识别图像文件'C:\ Desktop \ Tom_Cruise \ images \ 9.jpg
那么如何忽略它或如何解决错误???
答案 0 :(得分:1)
如何使用try-except
块来绕过IOError
?
try:
im = Image.open(imagepath)
except IOError:
print '%s could not be opened' % imagepath