win7环境下python PIL Image模块 show函数不能正常显示图片

﹥>﹥吖頭↗ 提交于 2019-12-09 14:36:48

在xp下使用PIL中Image的show()函数时,执行下列代码:

      from PIL import Image
      img = Image.open("G:\\1.png")
      img.show()

在win7下面使用PIL中Image的show()函数时,执行下列代码:

      发现图片不能够正常的显示,windows自带的图片查看器显示图片内容不存在。

      解决方法:(X为python的安装盘符)

      X:\Python26\lib\site-packages\PIL\ImageShow.py,第99行替换为:     

return "start /wait %s && PING127.0.0.1 -n 5 > NUL&& del /f %s" % (file,file)

原因见:http://www.velocityreviews.com/forums/t707158-python-pil-and-vista-windows-7-show-not-working.html

        ----解决方法摘自上面网站

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!