Python+Turtle绘制航海王草帽路飞详解
目录
一、程序运行1.效果展示-轮廓描绘2.效果展示-颜色填充二、实现过程1.绘图数据下载2.海龟绘图配置项3.轮廓绘制4.颜色填充:衣服、裤子5.颜色填充:草帽、腰带6.完整源码一、程序运行
1.效果展示 - 轮廓描绘
看轮廓描绘效果:
2.效果展示 - 颜色填充
衣服和裤子颜色填充效果:
二、实现过程
1.绘图数据下载
获取地址
内容预览:
2.海龟绘图配置项
降低刷新率可提升绘制速度,值越大刷新频率越低,速度越快
t.tracer(5000)
def set_trutle(): """ 作用:海龟绘图配置项 参数:无 返回:无 """ # 默认颜色区间是[0,1],切换为[0,255] t.Screen().colormode(255) # 设置起始大小 t.setup(width=x, height=y) # 调整坐标, t.setworldcoordinates(0,y,x,0) t.pen() # 设置绘制速度,0为最快 t.speed(0) # 禁用延迟提升速度 t.delay(0) # 提升速度,值越大越快 t.tracer(5000) # 设置默认画笔颜色为白色 t.pencolor((255,255,255)) # 抬起画笔 t.penup()
3.轮廓绘制
通过下落画笔 t.pendown()
和抬起画笔 t.penup()
来避免连线问题。
def draw_lufei_outline(): """ 作用:绘制路飞轮廓 参数:无 返回:无 """ # 数据文件读取 f=open("lufei.txt","r") bigmom_date = f.read().split(" ") for i in bigmom_date: try: # 数据分离与转化 j = i.split("_") x1 = round(float(j[0])) y1 = round(float(j[1])) color = j[2][1:-1].split(",") color[0]=int(color[0]) color[1]=int(color[1]) color[2]=int(color[2]) if((color[0]*0.299 + color[1]*0.587 + color[2]*0.114)>50): color = (255,255,255); # 下落画笔 t.pendown() # 解决图像只绘制一半的问题 t.sety(y1) # 轨迹追踪与绘制 t.goto(x1, y1) t.color(color) # 抬起画笔 t.penup() except Exception as e: print() f.close() print("轮廓绘制完成")
效果图演示:
4.颜色填充:衣服、裤子
绘制衣服、裤子的红色和蓝色。
def draw_lufei_tintage1(): """ 作用:路飞颜色填充:衣服、帽子 参数:无 返回:无 """ # 数据文件读取 f=open("lufei.txt","r") bigmom_date = f.read().split(" ") for i in bigmom_date: try: # 数据分离与转化 j = i.split("_") x1 = int(j[0]) y1 = int(j[1]) color = j[2][1:-1].split(",") color[0]=int(color[0]) color[1]=int(color[1]) color[2]=int(color[2]) if((color[0]*0.299 + color[1]*0.587 + color[2]*0.114)>150): color = (255,255,255); # 下落画笔 t.pendown() # 解决图像只绘制一半的问题 t.sety(y1) # 轨迹追踪与绘制 t.goto(x1, y1) t.color(color) # 抬起画笔 t.penup() except Exception as e: print() f.close() print("上色完成")
效果图演示:
5.颜色填充:草帽、腰带
绘制草帽、腰带的黄色。
def draw_lufei_tintage2(): """ 作用:路飞颜色填充:草帽、腰带 参数:无 返回:无 """ # 数据文件读取 f=open("lufei.txt","r") bigmom_date = f.read().split(" ") for i in bigmom_date: try: # 数据分离与转化 j = i.split("_") x1 = int(j[0]) y1 = int(j[1]) color = j[2][1:-1].split(",") color[0]=int(color[0]) color[1]=int(color[1]) color[2]=int(color[2]) if((color[0]*0.299 + color[1]*0.587 + color[2]*0.114)>215): color = (255,255,255); # 下落画笔 t.pendown() # 解决图像只绘制一半的问题 t.sety(y1) # 轨迹追踪与绘制 t.goto(x1, y1) t.color(color) # 抬起画笔 t.penup() except Exception as e: print() f.close() print("上色完成")
效果图演示:
6.完整源码
# -*- coding:utf-8 -*- # 2022-3-9 # 作者:小蓝枣 # 图像绘制:路飞 import turtle as t import time x = 224 y = 345 def set_trutle(): """ 作用:海龟绘图配置项 参数:无 返回:无 """ # 默认颜色区间是[0,1],切换为[0,255] t.Screen().colormode(255) # 设置起始大小 t.setup(width=x, height=y) # 调整坐标, t.setworldcoordinates(0,y,x,0) t.pen() # 设置绘制速度,0为最快 t.speed(0) # 禁用延迟提升速度 t.delay(0) # 提升速度,值越大越快 t.tracer(5000) # 设置默认画笔颜色为白色 t.pencolor((255,255,255)) # 抬起画笔 t.penup() def draw_lufei_outline(): """ 作用:绘制路飞轮廓 参数:无 返回:无 """ # 数据文件读取 f=open("lufei.txt","r") bigmom_date = f.read().split(" ") for i in bigmom_date: try: # 数据分离与转化 j = i.split("_") x1 = round(float(j[0])) y1 = round(float(j[1])) color = j[2][1:-1].split(",") color[0]=int(color[0]) color[1]=int(color[1]) color[2]=int(color[2]) if((color[0]*0.299 + color[1]*0.587 + color[2]*0.114)>50): color = (255,255,255); # 下落画笔 t.pendown() # 解决图像只绘制一半的问题 t.sety(y1) # 轨迹追踪与绘制 t.goto(x1, y1) t.color(color) # 抬起画笔 t.penup() except Exception as e: print() f.close() print("轮廓绘制完成") def draw_lufei_tintage1(): """ 作用:路飞颜色填充:衣服、帽子 参数:无 返回:无 """ # 数据文件读取 f=open("lufei.txt","r") bigmom_date = f.read().split(" ") for i in bigmom_date: try: # 数据分离与转化 j = i.split("_") x1 = int(j[0]) y1 = int(j[1]) color = j[2][1:-1].split(",") color[0]=int(color[0]) color[1]=int(color[1]) color[2]=int(color[2]) if((color[0]*0.299 + color[1]*0.587 + color[2]*0.114)>150): color = (255,255,255); # 下落画笔 t.pendown() # 解决图像只绘制一半的问题 t.sety(y1) # 轨迹追踪与绘制 t.goto(x1, y1) t.color(color) # 抬起画笔 t.penup() except Exception as e: print() f.close() print("上色完成") def draw_lufei_tintage2(): """ 作用:路飞颜色填充:草帽、腰带 参数:无 返回:无 """ # 数据文件读取 f=open("lufei.txt","r") bigmom_date = f.read().split(" ") for i in bigmom_date: try: # 数据分离与转化 j = i.split("_") x1 = int(j[0]) y1 = int(j[1]) color = j[2][1:-1].split(",") color[0]=int(color[0]) color[1]=int(color[1]) color[2]=int(color[2]) if((color[0]*0.299 + color[1]*0.587 + color[2]*0.114)>215): color = (255,255,255); # 下落画笔 t.pendown() # 解决图像只绘制一半的问题 t.sety(y1) # 轨迹追踪与绘制 t.goto(x1, y1) t.color(color) # 抬起画笔 t.penup() except Exception as e: print() f.close() print("上色完成") set_trutle() draw_lufei_outline() draw_lufei_tintage1() draw_lufei_tintage2() time.sleep(10000)
以上就是Python+Turtle绘制航海王草帽路飞详解的详细内容,更多关于Python Turtle路飞的资料请关注脚本之家其它相关文章!
上一篇:python实现图书馆借阅系统
下一篇:PyQt5信号与槽机制案例详解
X 关闭
X 关闭
- 15G资费不大降!三大运营商谁提供的5G网速最快?中国信通院给出答案
- 2联想拯救者Y70发布最新预告:售价2970元起 迄今最便宜的骁龙8+旗舰
- 3亚马逊开始大规模推广掌纹支付技术 顾客可使用“挥手付”结账
- 4现代和起亚上半年出口20万辆新能源汽车同比增长30.6%
- 5如何让居民5分钟使用到各种设施?沙特“线性城市”来了
- 6AMD实现连续8个季度的增长 季度营收首次突破60亿美元利润更是翻倍
- 7转转集团发布2022年二季度手机行情报告:二手市场“飘香”
- 8充电宝100Wh等于多少毫安?铁路旅客禁止、限制携带和托运物品目录
- 9好消息!京东与腾讯续签三年战略合作协议 加强技术创新与供应链服务
- 10名创优品拟通过香港IPO全球发售4100万股 全球发售所得款项有什么用处?