Matplotlib——保存图形

Matplotlib支持各种系统和图形格式。此外,Matplotlib保存所有图形格式的代码都是一样的,只需要调用图形对象的savefig()方法,非常简单易用。

#导入模块/包
import matplotlib.pyplot as plt
import numpy as np

#生成数据
x = np.linspace(0,10,200)
print(x)

fig = plt.figure()#生成一个空白图形并且将其赋值给fig对象

#绘制图形
plt.plot(x,np.sin(x),'-')
plt.plot(x,np.cos(x),'--')

#显示图形
plt.show()

#保存图形
fig.savefig("first.png")
fig.savefig("first.pdf")

使用如下语句可查看Matplotlib支持的图形格式。

print(fig.canvas.get_supported_filetypes())

为了便于观看对输出格式进行了调整

{'ps': 'Postscript', 
'eps': 'Encapsulated Postscript', 
'pdf': 'Portable Document Format', 
'pgf': 'PGF code for LaTeX', 
'png': 'Portable Network Graphics', 
'raw': 'Raw RGBA bitmap', 
'rgba': 'Raw RGBA bitmap', 
'svg': 'Scalable Vector Graphics', 
'svgz': 'Scalable Vector Graphics', 
'jpg': 'Joint Photographic Experts Group', 
'jpeg': 'Joint Photographic Experts Group', 
'tif': 'Tagged Image File Format', 
'tiff': 'Tagged Image File Format'}

你可能感兴趣的:(Matplotlib,python,matplotlib)