在Python中有一个很有用的图像处理插件:PIL(Python Imageing Library),PIL目前版本为1.1.7,在PIL处理图像的时候,有时show()一下图片,发现如下:
出现该问题的原因如下:
解决该问题的步骤如下:
1.打开X:\Python27\Lib\site-packages\PIL\ImageShow.py文件,将第99行替换为如下语句:
return "start /wait %s && PING 127.0.0.1 -n 5 > NUL && del /f %s" % (file, file)
如图(2)所示:
2.调用show()函数,代码如下:
#-*- coding: UTF-8 -*-import Imagestr1 = 'C:/Users/Administrator/Desktop/2.png'im = Image.open(str1)
#print im.format,im.size,im.modeim.show()
效果如下:
参考地址:http://www.thecodingforums.com/threads/python-pil-and-vista-windows-7-show-not-working.707158/