本文主要是介绍如何用python画动漫人物,用python画画简单代码,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
大家好,小编为大家解答python画动漫人物代码 星空的问题。很多人还不知道如何用python画动漫人物,现在让我们一起来看看吧!
前言
哈喽哈喽~!我是栗子同学呀,很久不见啦!
大家有没有想我呀——(嘿嘿,自恋.jpg 你们肯定想我。python还要安装什么。。更新新的内容啦)
最近一段时间都在忙碌中,很少更新文章啦~之后可能还会继续请假哦!
但只要是有时间的话小编都会继续抽出时间给大家每天至少给你们续一篇的啦!
今天没啥时间撒,所以给大家写了一篇简简单单的Turtle绘图系列给大家,还是希望大家多多给
小编阅读量,点赞评论的哈!你们的支持才是我更新的动力,Figthing+Figthing!
话不多说——👇👇👇👇👇👇
所有文章完整的素材+源码都在👇👇
私信小编06或者点击这行蓝色字体即可免费获取哈!
很多90后都是在柯南的陪伴下长大的,甚至很多人说能够对里面的剧情倒背如流。不过据统
计,只有10%的人才知道很重要却鲜为人知的东东哦~
正文
1994年,《名侦探柯南》在《周刊少年Sunday》上开始连载,此后的二十多年间,它一直是最
火的漫画之一,而很多读者,也是从这部漫画开始,逐渐爱上“推理”这一奇妙的题材。
这几年,中国的推理小说市场越来越好啦——今天,我们就通过《名侦探柯南》这部漫画中的
人物,来挖掘用Python、用代码来描绘这些经典的动漫人物角色吧~
一、Turtle绘制柯南
1)环境如下——
Python3.6、Pycharm2021、绘图的小编使用的是Turtle库自带的不需要安装哦!
(如果新手安装有问题或者需要安装包记得滴滴我哈,源码需要的也都可以啦)
2)代码展示:
import turtle as tl
import time
tl.setup(1580,800,0,0)
tl.speed(8)
tl.pensize(3)
tl.up()
tl.goto(0,-190)
tl.seth(90)
tl.fd(110)
tl.seth(10)
tl.fd(-15)
tl.pd()
tl.fd(-10)
tl.up()
tl.goto(0,-80)
tl.seth(-5)
tl.pd()
tl.fd(40)
tl.up()
tl.goto(0,-25)
tl.seth(0)
tl.pd()
tl.circle(12,90)
tl.seth(135)
tl.circle(-35,45)
tl.seth(-125)
tl.circle(40,60)
tl.up()
tl.goto(0,210)
tl.seth(167)
tl.pd()
tl.fillcolor("black")
tl.begin_fill()
tl.circle(910,26)
tl.seth(230)
tl.circle(145,80)
tl.circle(225,43)
tl.circle(225,43)
tl.circle(170,90)
tl.end_fill()
tl.up()
tl.fd(-17)
tl.seth(171)
tl.pd()
tl.fillcolor("white")
tl.begin_fill()
tl.circle(910,22)
tl.seth(232)
tl.circle(145,83)
tl.circle(223,42)
tl.circle(223,42)
tl.circle(167,90)
tl.end_fill()
tl.up()
tl.goto(0,210)
tl.seth(13)
tl.pd()
tl.fillcolor("black")
tl.begin_fill()
tl.circle(-910,26)
tl.seth(-50)
tl.circle(-145,80)
tl.circle(-225,43)
tl.circle(-225,43)
tl.circle(-170,90)
tl.end_fill()
tl.up()
tl.fd(-17)
tl.seth(9)
tl.pd()
tl.fillcolor("white")
tl.begin_fill()
tl.circle(-910,22)
tl.seth(-52)
tl.circle(-145,83)
tl.circle(-223,42)
tl.circle(-223,42)
tl.circle(-167,90)
tl.end_fill()
tl.up()
tl.goto(0,-190)
tl.seth(170)
tl.pd()
tl.circle(-580,25)
tl.circle(-120,30)
tl.circle(620,22)
tl.circle(-380,35)
tl.up()
tl.goto(0,-190)
tl.seth(10)
tl.pd()
tl.circle(580,30)
tl.circle(120,25)
tl.circle(-620,22)
tl.circle(380,35)
tl.up()
tl.goto(-185,160)
tl.seth(-65)
tl.pd()
tl.fillcolor("black")
tl.begin_fill()
tl.circle(-45,220)
tl.circle(-190,10)
tl.up()
tl.goto(-185,160)
tl.seth(160)
tl.pd()
tl.pensize(6)
tl.fd(-15)
tl.fd(93)
tl.end_fill()
tl.seth(190)
tl.circle(160,35)
tl.left(90)
tl.fd(8)
tl.pensize(5)
tl.fd(7)
tl.pensize(4)
tl.fd(6)
tl.pensize(3)
tl.fd(5)
tl.up()
tl.fd(45)
tl.seth(0)
tl.fd(15)
tl.pd()
tl.seth(-40)
tl.circle(55,95)
tl.up()
tl.goto(185,160)
tl.seth(245)
tl.pd()
tl.fillcolor("black")
tl.begin_fill()
tl.circle(45,220)
tl.circle(190,10)
tl.up()
tl.goto(185,160)
tl.seth(20)
tl.pd()
tl.pensize(6)
tl.fd(-35)
tl.fd(113)
tl.end_fill()
tl.seth(-10)
tl.circle(-150,35)
tl.right(90)
tl.fd(8)
tl.pensize(5)
tl.fd(7)
tl.pensize(4)
tl.fd(6)
tl.pensize(3)
tl.fd(5)
tl.up()
tl.fd(45)
tl.seth(180)
tl.fd(15)
tl.seth(220)
tl.circle(-55,95)
tl.seth(-30)
tl.pd()
tl.circle(95,70)
tl.up()
tl.pencolor("white")
tl.pensize(7)
tl.goto(-255,180)
tl.seth(-75)
tl.pd()
tl.fd(82)
tl.up()
tl.pensize(4)
tl.goto(-267,148)
tl.pd()
tl.fd(35)
tl.pencolor("black")
tl.pensize(3)
tl.up()
tl.goto(-185,160)
tl.seth(-65)
tl.pd()
tl.fillcolor("white")
tl.begin_fill()
tl.circle(-30,220)
tl.circle(-150,8)
tl.end_fill()
tl.up()
tl.pencolor("white")
tl.pensize(9)
tl.goto(210,145)
tl.seth(-75)
tl.pd()
tl.fd(48)
tl.up()
tl.goto(183,148)
tl.pd()
tl.pensize(4)
tl.fd(45)
tl.pencolor("black")
tl.pensize(3)
tl.up()
tl.goto(185,160)
tl.seth(20)
tl.fd(20)
tl.seth(245)
tl.pd()
tl.fillcolor("white")
tl.begin_fill()
tl.circle(35,220)
tl.circle(145,11)
tl.end_fill()
tl.up()
tl.goto(-251,-80)
tl.pd()
tl.seth(170)
tl.circle(-350,70)
tl.circle(-30,170)
tl.up()
tl.goto(-280,-30)
tl.seth(176)
tl.pd()
tl.circle(-190,60)
tl.up()
tl.goto(-330,50)
tl.pd()
tl.seth(150)
tl.circle(135,45)
tl.up()
tl.goto(251,-80)
tl.pd()
tl.seth(10)
tl.circle(350,75)
tl.circle(17,170)
tl.up()
tl.goto(297,-30)
tl.seth(4)
tl.pd()
tl.circle(190,80)
tl.up()
tl.goto(348,50)
tl.pd()
tl.seth(45)
tl.circle(-165,45)
tl.up()
tl.goto(348,50)
tl.seth(60)
tl.pd()
tl.circle(-200,56)
tl.up()
tl.goto(-640,395)
tl.pd()
tl.seth(-160)
tl.circle(155,60)
tl.seth(70)
tl.circle(-174,72)
tl.seth(-140)
tl.circle(320,45)
tl.circle(120,45)
tl.seth(85)
tl.circle(-360,55)
tl.up()
tl.goto(-500,395)
tl.pd()
tl.seth(-120)
tl.circle(350,45)
tl.up()
tl.goto(-500,395)
tl.pd()
tl.pensize(1)
tl.seth(-150)
tl.circle(375,50)
tl.up()
tl.goto(-500,395)
tl.pd()
tl.pensize(3)
tl.seth(-120)
tl.circle(350,45)
tl.seth(90)
tl.circle(-380,47)
tl.seth(0)
tl.fd(30)
tl.seth(-130)
tl.circle(380,15)
tl.seth(40)
tl.circle(-380,25)
tl.up()
tl.seth(0)
tl.fd(-80)
tl.seth(-130)
tl.pd()
tl.circle(360,7)
tl.seth(40)
tl.circle(-380,22)
tl.up()
tl.goto(-500,395)
tl.seth(-110)
tl.pd()
tl.circle(375,27)
tl.seth(-90)
tl.circle(140,100)
tl.seth(138)
tl.circle(-510,14)
tl.circle(-65,70)
tl.fd(30)
tl.up()
tl.seth(90)
tl.fd(25)
tl.pd()
tl.seth(-95)
tl.circle(180,36)
tl.seth(100)
tl.circle(-200,23)
tl.circle(-130,45)
tl.fd(35)
tl.seth(-135)
tl.circle(230,43)
tl.seth(45)
tl.circle(230,43)
tl.seth(-110)
tl.circle(200,45)
tl.seth(100)
tl.circle(-170,38)
tl.up()
tl.seth(76)
tl.fd(35)
tl.pd()
tl.fillcolor("white")
tl.begin_fill()
tl.seth(-107)
tl.circle(253,50)
tl.seth(103)
tl.circle(-200,43)
tl.end_fill()
tl.up()
tl.fd(42)
tl.seth(0)
tl.fd(-12)
tl.pd()
tl.seth(-115)
tl.circle(235,42)
tl.up()
tl.seth(100)
tl.circle(-220,22)
tl.pd()
tl.pensize(2)
tl.circle(-220,23)
tl.seth(-100)
tl.fillcolor("white")
tl.begin_fill()
tl.circle(260,40)
tl.seth(130)
tl.circle(-235,36)
tl.end_fill()
tl.pensize(3)
tl.seth(90)
tl.circle(-200,32)
tl.seth(-90)
tl.circle(105,45)
tl.seth(-26)
tl.fd(80)
tl.seth(97)
tl.fd(105)
tl.seth(-33)
tl.fd(135)
tl.fillcolor("white")
tl.begin_fill()
tl.up()
tl.fd(35)
tl.seth(-65)
tl.pd()
tl.circle(-225,70)
tl.seth(55)
tl.circle(225,33)
tl.end_fill()
tl.circle(155,20)
tl.fillcolor("white")
tl.begin_fill()
tl.circle(155,43)
tl.seth(-75)
tl.circle(400,14.5)
tl.end_fill()
tl.fillcolor("white")
tl.begin_fill()
tl.circle(400,8.5)
tl.circle(-450,15)
tl.seth(170)
tl.circle(-510,18)
tl.circle(-260,50)
tl.end_fill()
tl.seth(-65)
tl.circle(279,45)
tl.fd(38)
tl.seth(130)
tl.fd(210)
tl.seth(-26)
tl.fd(79)
tl.seth(101)
tl.fd(107)
tl.seth(-26)
tl.fd(123)
tl.up()
tl.seth(0)
tl.fd(10)
tl.pd()
tl.seth(-65)
tl.fillcolor("white")
tl.begin_fill()
tl.circle(170,48)
tl.seth(150)
tl.circle(-150,35)
tl.end_fill()
tl.seth(130)
tl.fd(25)
tl.fd(-25)
tl.seth(-50)
tl.fillcolor("white")
tl.begin_fill()
tl.circle(178,49)
tl.fd(40)
tl.seth(170)
tl.circle(-160,50)
tl.end_fill()
tl.seth(-40)
tl.circle(180,25)
tl.seth(140)
tl.up()
tl.circle(180,25)
tl.pd()
tl.seth(140)
tl.circle(-180,15)
tl.seth(-5)
tl.fillcolor("white")
tl.begin_fill()
tl.circle(-230,60)
tl.seth(100)
tl.circle(240,28)
tl.end_fill()
tl.seth(-50)
tl.circle(160,50)
tl.seth(167)
tl.circle(-188,50)
tl.seth(-17)
tl.circle(-170,60)
tl.seth(97)
tl.circle(500,10)
tl.seth(-52)
tl.circle(-520,12)
tl.up()
tl.seth(75)
tl.fd(180)
tl.pd()
tl.fd(-45)
tl.seth(150)
tl.fd(80)
tl.seth(-85)
tl.fd(30)
tl.seth(170)
tl.fd(180)
tl.seth(-17)
tl.fd(220)
tl.seth(95)
tl.fd(30)
tl.seth(-30)
tl.fd(85)
tl.seth(86)
tl.fd(80)
tl.up()
tl.goto(-118,-158)
tl.seth(-116)
tl.pd()
tl.circle(100,30)
tl.fd(190)
tl.up()
tl.goto(-130,-150)
tl.pd()
tl.seth(-120)
tl.fd(210)
tl.seth(-26)
tl.circle(-140,23)
tl.seth(-170)
tl.fd(20)
tl.left(90)
tl.fd(30)
tl.fd(-30)
tl.left(90)
tl.fd(60)
tl.seth(60)
tl.fd(50)
tl.seth(-3)
tl.fd(60)
tl.seth(42)
tl.fd(51)
tl.fd(-51)
tl.fillcolor("white")
tl.begin_fill()
tl.seth(-3)
tl.fd(-60)
tl.seth(67)
tl.fd(60)
tl.end_fill()
tl.seth(127)
tl.fd(-10)
tl.fillcolor("white")
tl.begin_fill()
tl.fd(68)
tl.seth(4)
tl.fd(70)
tl.end_fill()
tl.seth(-40)
tl.fd(55)
tl.seth(60)
tl.fd(30)
tl.seth(-3)
tl.fd(30)
tl.fd(-30)
tl.seth(60)
tl.fd(-30)
tl.seth(-120)
tl.circle(50,80)
tl.seth(-3)
tl.fd(30)
tl.fd(-30)
tl.seth(-90)
tl.fd(90)
tl.fd(-25)
tl.seth(135)
tl.fd(42)
tl.up()
tl.goto(-130,-150)
tl.pd()
tl.seth(-120)
tl.fd(60)
tl.seth(190)
tl.fd(200)
tl.seth(-120)
tl.fd(140)
tl.seth(-75)
tl.fd(35)
tl.up()
tl.seth(0)
tl.fd(100)
tl.seth(120)
tl.pd()
tl.circle(-125,57)
tl.up()
tl.goto(118,-158)
tl.seth(-64)
tl.pd()
tl.circle(-100,30)
tl.fd(190)
tl.up()
tl.goto(130,-150)
tl.pd()
tl.seth(-60)
tl.fd(210)
tl.seth(206)
tl.circle(140,23)
tl.seth(-10)
tl.fd(20)
tl.right(90)
tl.fd(30)
tl.fd(-30)
tl.right(90)
tl.fd(60)
tl.seth(120)
tl.fd(50)
tl.seth(183)
tl.fd(60)
tl.seth(138)
tl.fd(51)
tl.fd(-51)
tl.fillcolor("white")
tl.begin_fill()
tl.seth(183)
tl.fd(-60)
tl.seth(113)
tl.fd(60)
tl.end_fill()
tl.seth(53)
tl.fd(-10)
tl.fillcolor("white")
tl.begin_fill()
tl.fd(68)
tl.seth(176)
tl.fd(70)
tl.end_fill()
tl.seth(220)
tl.fd(55)
tl.seth(120)
tl.fd(30)
tl.seth(120)
tl.fd(-30)
tl.seth(-60)
tl.circle(-50,80)
tl.seth(183)
tl.fd(30)
tl.fd(-30)
tl.seth(-90)
tl.fd(90)
tl.fd(-35)
tl.seth(45)
tl.fd(42)
tl.up()
tl.goto(130,-150)
tl.pd()
tl.seth(-60)
tl.fd(60)
tl.seth(-10)
tl.fd(200)
tl.seth(-60)
tl.fd(140)
tl.seth(255)
tl.fd(35)
tl.up()
tl.seth(180)
tl.fd(100)
tl.seth(60)
tl.pd()
tl.circle(125,57)
tl.up()
tl.goto(0,-205)
tl.pd()
tl.seth(182)
tl.circle(-142,50)
tl.up()
tl.goto(0,-205)
tl.pd()
tl.seth(-2)
tl.circle(142,50)
tl.up()
tl.seth(0)
tl.fd(250)
tl.pd()
tl.color("red")
3)效果展示
二、词云图柯南
1)环境如下——
Python3.6、Pycharm2021、这用到的模块比较多: wordcloud、pillow、numpy部分自带的不展示
模块安装:pip install -i https://pypi.douban.com/simple/+模块名
(如果新手安装有问题或者需要安装包记得滴滴我哈,源码需要的也都可以啦)
2)代码展示
from wordcloud import WordCloud, ImageColorGenerator
from PIL import Image
from imageio import imread
import numpy as npbackground = '柯南.jpg' #创建蒙版
image = Image.open(background) #打开蒙版
arr = np.array(image) #将蒙版转换成数值数组 yt = WordCloud(font_path = 'simhei.ttf', background_color = 'white',width = 3000,height = 2000,mask = arr).generate(str(items))
back = imread(background) #读取柯南背景图
color = ImageColorGenerator(back) #获取柯南图颜色yt.recolor(color_func = color) #给词云图上色yt.to_file('词云图4.png')
3)效果展示
总结
嗨!代码比较简单,这次给大家展示的内容比较单一,嘻嘻下次下次一定给大家更新更好的内
容!大家如果有想看的内容也可以直接评论区留言的啦!(虽然不一定都会写,哈哈哈.jpg)
文章到这里就正式结束,有爱这两款代码的滴滴我即可撒!
✨完整的素材等:也可以滴滴我吖!或者点击文末自取免费拿的哈~
😘往期推荐阅读——
项目1.0 玫瑰花(内含多份源码)
【Turtle玫瑰汇总】温柔且浪漫至极——“玫瑰的花期到了“
项目1.1 雪花(内含多份源码)
Turtle系列:下雪了,下雪了、最漂亮的雪景在这里....太美了
项目1.3 魔法少女
我见过的Turtle天花板:居然还能画出魔法少女?我惊了【附源码】
项目 2.1 樱花将灿,冬尽风暖
漫天樱花表白小程序:“樱花将灿,冬尽风暖“一樱花和你我都想念~(内含多份源码)
项目 2.2 源码合集(表白)
Turtle系列:小人发射爱心、文字表白、一箭穿心你想要的都在这个小程序哦~(超值)
🎁文章汇总——
汇总: Python文章合集 | (入门到实战、游戏、Turtle、案例等)
(文章汇总还有更多你案例等你来学习啦~源码找我即可免费!)
这篇关于如何用python画动漫人物,用python画画简单代码的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!