python中有一个画图的库非常有名,就是:
turtle
turtle库是Python语言中一个很流行的绘制图像的函数库,想象一个小乌龟,在一个横轴为x、纵轴为y的坐标系原点,(0,0)位置开始,它根据一组函数指令的控制,在这个平面坐标系中移动,从而在它爬行的路径上绘制了图形。
安装库
pip install turtle
实战
使用python画个大风车,就使用这个库实现;
主要代码如下:
import turtle
#画一个扇叶
def draw_sector(col1,col2):
turtle.color(col1,col1)
turtle.circle(30,90)
turtle.right(90)
turtle.begin_fill()
turtle.fd(120)
turtle.right(90)
turtle.fd(150)
turtle.right(135)
turtle.fd(150*(1.414)-30)
turtle.end_fill()
turtle.color(col2,col2)
turtle.begin_fill()
turtle.right(90)
turtle.circle(30,90)
turtle.right(90)
turtle.fd(75*1.414-30)
turtle.right(90)
turtle.fd(150/1.414)
turtle.right(135)
turtle.fd(120)
turtle.end_fill()
turtle.right(90)
def draw_all_sector(n=0):
turtle.setup(800,800,0,0) #设置画布大小
#turtle.tracer(10) #加速
# 先画支撑杆子
turtle.pensize(50)
turtle.goto(0,32)
turtle.right(90)
turtle.color('lightgray')
turtle.fd(350)
turtle.goto(0,0)
turtle.left(90)
turtle.pensize(1)
#turtle.circle(30,n*3.14159265358) //移动周长
turtle.pensize(3)
# 然后画四个扇叶
draw_sector('green','darkgreen')
draw_sector('green','darkgreen')
draw_sector('green','darkgreen')
draw_sector('green','darkgreen')
draw_all_sector()
# 保持不关闭
turtle.done()
保存为图片
- 下载 Ghostscript
官网下载地址:https://www.ghostscript.com/download/gsdnld.html - 配置环境变量
- 编码
import turtle
from PIL import Image
def save2jpg(n):
turtle.update()
ts = turtle.getscreen()
ts.getcanvas().postscript(file="turtle.eps")
im = Image.open("turtle.eps")
im.save(str(n) + ".png")
turtle.bye()