python画图后怎么保存
时间:2019-07-05 09:46
1、使用matplotlib画图保存方法: 首先,import头文件如下: 画图: 保存图片: 展示图片: 2、turtle生成图片保存 代码示例如下: 更多Python相关技术文章,请访问Python教程栏目进行学习! 以上就是python画图后怎么保存的详细内容,更多请关注gxlsystem.com其它相关文章!import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
from matplotlib.pyplot import plot,savefig
fig, ax = plt.subplots(figsize=(12, 12))
ax.imshow(im, aspect='equal') #im是要显示的图像
savefig("D:/1.jpg")
plt.show()
from Tkinter import *
from turtle import *
import turtle
forward(100)
ts = turtle.getscreen()
ts.getcanvas().postscript(file="duck.eps") #.eps文件即postscript脚本