解决win7下PIL无法打开图片的问题
找到PIL安装文件里的ImageShow.py
把第99行的
return "start /wait %s && del /f %s" % (file, file)
修改成
return "start /wait %s && PING 127.0.0.1 -n 5 > NUL && del /f %s" % (file, file)
找到PIL安装文件里的ImageShow.py
把第99行的
return "start /wait %s && del /f %s" % (file, file)
修改成
return "start /wait %s && PING 127.0.0.1 -n 5 > NUL && del /f %s" % (file, file)