gpt4 book ai didi

python - 在 Flask 中显示图像

转载 作者:太空宇宙 更新时间:2023-11-04 04:47:50 24 4
gpt4 key购买 nike

我正在尝试使用此库从我的 sqlite3 数据库渲染图像:

#!/usr/bin/python3
from flask import Flask, render_template, request, send_file
from flask_sqlalchemy import SQLAlchemy
from io import BytesIO
import base64
@app.route('/show/')
def show():
file_data = FileContents.query.filter_by(id=3).first()
image = b64encode(file_data.data)<br/>
return render_template('display.html', image = image)


并将此变量放入 html 中:

<html>
<body>
<img src="data:image;base64,{{image}}"/>
</body>
</html>

但是我无法显示图像(我使用的是 python3 和 google chorme)有人可以帮忙获取吗?

最佳答案

您可以添加扩展名。示例:<img src="data:image/png;base64,{{ image }}"\>并将图像解码为 utf-8 return render_template('display.html', image = image.decode('utf8'))

关于python - 在 Flask 中显示图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49129272/

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