Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在服务器文件夹中有一张图片。在处理 Get 请求的 do_GET() 函数中,我想发回图像。我选择使用 self.wfile.write('')。谁能告诉我如何将图像的来源包含在 img 标签中?还是有更好的方法来做到这一点?谢谢。
您可以使用如下数据 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())