[ Web Proxy ]
URL:
Viewing: https://matplotlib.org/gallery/mplot3d/../color/../mplot3d/../misc/print_stdout_sgskip.html [Back]  [Original]

Print image to stdout — Matplotlib 3.11.2 documentation
Back to top
Search the docs ...:

Print image to stdout#

print png to standard out

usage: python print_stdout.py > somefile.png

import sys

import matplotlib

matplotlib.use('Agg')
import matplotlib.pyplot as plt

plt.plot([1, 2, 3])
plt.savefig(sys.stdout.buffer)

Gallery generated by Sphinx-Gallery


Web Proxy Viewer  |  New URL  |  Original Page