0

我在服务器文件夹中有一张图片。在处理 Get 请求的 do_GET() 函数中,我想发回图像。我选择使用 self.wfile.write('')。谁能告诉我如何将图像的来源包含在 img 标签中?还是有更好的方法来做到这一点?谢谢。

4

1 回答 1

1

您可以使用如下数据 URI 在 img 标记中包含图像的“来源”:

<img alt="Embedded Image" src="data:image/png;base64,<your base64 encoding here>" />

使用 base64 python 标准库生成 base64 字符串:

import base64

with open("image.png", "rb") as image:
    encoded_string = base64.b64encode(image.read())
于 2013-03-18T05:32:54.417 回答