gpt4 book ai didi

python - 通过 Python 中的 WSGI 应用程序发送后的图像失真

转载 作者:太空宇宙 更新时间:2023-11-04 11:05:54 25 4
gpt4 key购买 nike

很多时候,当我通过 WSGI(使用 wsgiref)发送图像数据时,图像会失真。例如,检查以下内容:

distorted Google logo
(来源:evanfosmark.com)

最佳答案

由于您还没有发布代码,这里是一个可以正常工作的简单代码在 Windows 上使用 python 2.5

from wsgiref.simple_server import make_server

def serveImage(environ, start_response):
status = '200 OK'
headers = [('Content-type', 'image/png')]
start_response(status, headers)

return open("about.png", "rb").read()

httpd = make_server('', 8000, serveImage)
httpd.serve_forever()

可能您使用的是“r”而不是“rb”

关于python - 通过 Python 中的 WSGI 应用程序发送后的图像失真,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/967826/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com