Matplotlib 将图形保存到图像文件

Matplotlib 保存图片

Matplotlib 可以使用 savefig() 将图直接保存到文件中。

该方法可以这样使用:

fig.savefig('plot.png')

完整的例子:

import matplotlib
import matplotlib.pyplot as plt
import numpy as np

y = [2,4,6,8,10,12,14,16,18,20]
x = np.arange(10)
fig = plt.figure()
ax = plt.subplot(111)
ax.plot(x, y, label='$y = numbers')
plt.title('Legend inside')
ax.legend()
#plt.show()

fig.savefig('plot.png')

要更改格式,只需更改扩展名,如下所示:

fig.savefig('plot.pdf')

你可以使用下面代码来打开文件

display plot.png

或者在图像或 PDF 阅读器中打开它。