在flask
中,如何将plt
matplotlib
中保存的图片保存在网页上?下面的python代码创建一个绘图并将其保存为.png
图像。 HTML文件也如下。当我运行它时,我最终得到错误说:
TypeError: expected str, bytes or os.PathLike object, not NoneType.
任何可以帮助我的人请告诉我该怎么做。
@app.route('/images/<air_quality>')
def images(air_quality):
return render_template("displaygraph.html", title=air_quality)
@app.route('/fig/<air_quality>')
def fig(air_quality):
import matplotlib.pyplot as plt
import numpy as np
from io import BytesIO
img = BytesIO()
pm10 = np.array(['23', '45', '56', '12'])
pm25 = np.array(['34', '56', '59', '34'])
dates = np.array(['2017-12-20', '2017-12-21', '2017-12-22', '2017-12-23'])
plt.figure(figsize=(12, 8), dpi=100, facecolor='1.0')
plt.title("GangNam", fontsize=20)
plt.plot_date(dates, pm10, 'rs--', label='pm10')
plt.plot_date(dates, pm25, 'gs--', label='pm25')
plt.legend()
img = plt.savefig('img.png')
return send_file(img, mimetype='image/png')
我不知道如何在这里显示HTML文件。但该文件在img
标记中包含此内容:
src="{{url_for('fig', air_quality = title)}}
答案 0 :(得分:0)
您可以将pylab图保存到内存文件中,如BytesIO
(py3),StringIO
(py2)。
plt.savefig(img, format='png')
img.seek(0)
response=make_response(img.getvalue())
response.headers['Content-Type'] = 'image/png'
img.close()
return response