python matlibplot时如何不显示图片只保存图片

1.查看网上的博客好像没得到需要的结果,于是查看官方文档,既然跟show有关,我就先查询,plt.show()

2.在see also中查看到了ioff可以禁用交互模式,而交互模式就是在创建图时就显示出图片,禁用了之后就可以只保存而不显示了

具体用法如下:

# if interactive mode is on
# then figures will be shown on creation
plt.ion()
# This figure will be shown immediately
fig = plt.figure()

with plt.ioff():
    # interactive mode will be off
    # figures will not automatically be shown
    fig2 = plt.figure()
    # ...


版权声明:本文为m0_51518257原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。