在 IIS 上通过 python cgi 返回 png

发布于 2024-12-26 17:20:02 字数 619 浏览 1 评论 0原文

我正在尝试使用 IIS 上的 python cgi 将 png 图像返回到浏览器。

我遇到了同样的问题: 在 python、cgi-bin 中将图像返回到浏览器

但那里提供的解决方案在我的机器上不起作用。

下面简单介绍一下我的情况:

  1. 我在 C:\logs\demo.png 上有一个 png 图像,这个图像绝对没问题,可以用可视化图像查看器打开;

  2. 我有一个包含以下代码的 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:

  1. I have a png image on C:\logs\demo.png, this image is absolutely fine and can be opened by a visual image viewer;

  2. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

看春风乍起 2025-01-02 17:20:02

问题解决了。

最后发现IIS配置错误。

扩展名映射应该是:

c:\Python27\python.exe -u "%s" "%s"

-u 防止换行符转换为回车符/换行符组合,这有时会导致问题

下面的文章可能对配置有用。非常详细和清晰。
http://python.net4geeks.com/iiswse.asp

Problem solved.

Finally I found an error in IIS configuration.

The extension mapping should be:

c:\Python27\python.exe -u "%s" "%s"

-u prevents newlines from being converted to Carriage return/ newline combinations which can sometimes cause problems

The article below might be useful for configuration. Very detailed and clear.
http://python.net4geeks.com/iiswse.asp

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文