小编Hac*_*ack的帖子

Python 3 图像 base64 不保存到 html img 标签

我想创建一个图像(不将其保存到磁盘),并在浏览器中显示它。据我所知,我必须创建一个 base64 图像,但我不知道如何制作。

你能帮助我吗?

这是我的代码:

from PIL import Image, ImageDraw
import base64

im = Image.new('RGBA', (200, 100),  color = 'black')
data_uri = #missing how I can convert the image to base64 ?

html = '<html><head></head><body>'
html += '<img src="data:image/png;base64,{0}">'.format(data_uri)
html += '</body></html>'

print (html)
Run Code Online (Sandbox Code Playgroud)

html python base64 image

4
推荐指数
1
解决办法
6153
查看次数

标签 统计

base64 ×1

html ×1

image ×1

python ×1