在 IIS 上通过 python cgi 返回 png
我正在尝试使用 IIS 上的 python cgi 将 png 图像返回到浏览器。
我遇到了同样的问题: 在 python、cgi-bin 中将图像返回到浏览器
但那里提供的解决方案在我的机器上不起作用。
下面简单介绍一下我的情况:
我在 C:\logs\demo.png 上有一个 png 图像,这个图像绝对没问题,可以用可视化图像查看器打开;
我有一个包含以下代码的 python 脚本:
打印'HTTP/1.1 200 OK' 打印'内容类型:图像/png\n' 打印文件('c:\\logs\\demo.png', 'rb').read()
3.当我访问相应的网址时,没有返回任何内容,并且 Firefox 说图像包含错误。响应中返回的长度也很小。
对于这个问题有什么想法吗?我快疯了~
任何回复表示赞赏:)
I'm trying to return a png image to browser using python cgi on IIS.
I got the same problem with this:
Return an image to the browser in python, cgi-bin
but the solutions provided there don't work on my machine.
Here is a brief intro to my situation:
I have a png image on C:\logs\demo.png, this image is absolutely fine and can be opened by a visual image viewer;
I have a python script with the code below:
print 'HTTP/1.1 200 OK' print 'Content-Type:image/png\n' print file('c:\\logs\\demo.png', 'rb').read()
3 . when I visit the corresponding url, nothing returned, and firefox says the image contains errors. The length returned in the response is also very small.
Is there any idea about the problem? I'm getting crazy~
Any reply is appreciated:)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题解决了。
最后发现IIS配置错误。
扩展名映射应该是:
-u
防止换行符转换为回车符/换行符组合,这有时会导致问题下面的文章可能对配置有用。非常详细和清晰。
http://python.net4geeks.com/iiswse.asp
Problem solved.
Finally I found an error in IIS configuration.
The extension mapping should be:
-u
prevents newlines from being converted to Carriage return/ newline combinations which can sometimes cause problemsThe article below might be useful for configuration. Very detailed and clear.
http://python.net4geeks.com/iiswse.asp