This post introduces how to serve the figures generated by matplotlib to django web app without saving on the server.
In your django views py file, import the following libraries
import matplotlib
matplotlib.use("Agg")
import matplotlib.pyplot as plt
from io import BytesIO
import base64
Note: the two lines of code above in blue need to be placed at the very beginning of the py script; otherwise, you would meet the following error: _tkinter.TclError: no display name and no $DISPLAY environment variable.
In the views py file, in the function that you defined to pass the image data to the front end template file, add the following code:
buf = BytesIO()
plt.savefig(buf, format='png', dpi=300)
image_base64 = base64.b64encode(buf.getvalue()).decode('utf-8').replace('\n', '')
buf.close()
Note: in the function that you defined to pass the image data to the front end template file in your views py file, remember to send the value of the variable image_base64
via, for example, json.
Now, in your front end template file, you can add the following image tag.
<img src="data:image/png;base64,{{image_base64}}" alt="some text to display to your users when the image does not show correctly" width=500 height=auto />
You now should be able to see the figure displayed on your web app page:)
For more details about using data url to pass image data to front end html file, check here (pdf).