如何通过 matplotlib.pyplot 保存图片?
要使用 matplotlib.pyplot.savefig() 保存图片,我们可以按以下步骤进行 -
- 设置图片尺寸并调整子图之间和周围的边距。
- 使用 numpy 创建 x 和 y 数据点。
- 使用 plot() 方法绘制 x 和 y 数据点。
- 要保存图片,请使用 savefig() 方法。
示例
import numpy as np import matplotlib.pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True x = np.linspace(-np.pi, np.pi, 100) plt.plot(x, np.sin(x) * x, c='red') plt.savefig("myimage.png")
输出
当我们执行代码时,它将以下图片作为 "myimage.png" 保存到项目目录中。
广告