情人节之Python版冰墩墩
涂寐 Lv5

0x00 前言

声明:文中所涉及的技术、思路和工具仅供以安全为目的的学习交流使用,任何人不得将其用于非法用途以及盈利等目的,否则后果自行承担!

  1. 这不情人节将至,看下有什么礼物给媳妇。乱逛了下,发现冬奥会吉祥物冰墩墩很火呀,赶忙去某宝看一波,滴滴答答,果真是”一墩难求”!还是刷某音安慰下我幼小的心灵,冰墩墩冰墩墩全网都在炫冰墩墩~
  2. 嘿!python绘制冰墩墩?咋也来试一波,这不就有情人节礼物了吗,哈哈哈~~~

0x01 上源码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
# python绘制2022冬奥会吉祥物--冰墩墩
# 此处左右为冰墩墩,面对我时我的观察角度所得

import turtle as t
from time import sleep

# 是否显示绘画过程
# t.tracer(False)

t.setup(800, 600) # 设置窗体大小
t.title('涂寐送你一只冰墩墩') # 更改窗口默认标题
t.speed(10) # 设置画笔移动速度
# t.bgpic('dd.png') # 找到一张简笔画,开始疯狂的测算描边
# 隐藏光标
t.hideturtle()

# 画出大致轮廓
#
#
# 画脑门
t.penup() # 抬起画笔,不留下痕迹
t.goto(-73, 230) # 设置起点
t.pencolor('lightgray') # 画笔颜色
t.pensize(3) # 画笔宽度
t.fillcolor('white') # 绘制图形的填充色
t.begin_fill() # 从此处落笔开始,准备填充图形
t.pendown() # 画笔落下,留下痕迹
t.setheading(20) # 以 x 轴正方向为基准,设置当前朝向为 angle 角度
t.circle(-250, 35) # 画圆,1.半径;2.偏移角度
#
# 右耳
t.setheading(50)
t.circle(-42,180)
#
# 右侧脸与右侧肚子
t.setheading(-50)
t.circle(-190,30)
t.circle(-320,45)
#
# 右脚
t.circle(120,30)
t.circle(200,12)
t.circle(-18,85)
t.circle(-180,23)
t.circle(-20,110)
#
# 裤裆
t.circle(15,115)
t.circle(100, 12)
t.circle(15, 120)
#
# 左脚
t.circle(-15, 110)
t.circle(-150, 30)
t.circle(-15, 70)
t.circle(-150, 10)
#
# 左侧肚子
t.circle(200, 35)
t.circle(-150, 20)
#
# 左手
t.setheading(-120)
t.circle(50, 30)
t.circle(-35, 200)
t.circle(-300, 23)
#
# 左侧脸
t.setheading(86)
t.circle(-300, 26)
#
# 左耳
t.setheading(122)
t.circle(-53, 160)
t.end_fill()
#
# 补上右手
t.penup()
t.goto(177, 112)
t.pencolor("lightgray")
t.pensize(3)
t.fillcolor("white")
t.begin_fill()
t.pendown()
t.setheading(80)
t.circle(-45, 200)
t.circle(-300, 23)
t.end_fill()
#
#
# 画脸上的彩虹圈
t.penup()
t.goto(-135, 120)
t.pensize(5)
t.pencolor("cyan")
t.pendown()
t.setheading(60)
t.circle(-165, 150)
t.circle(-130, 78)
t.circle(-250, 30)
t.circle(-138, 105)
t.penup()
t.goto(-131, 116)
t.pencolor("slateblue")
t.pendown()
t.setheading(60)
t.circle(-160, 144)
t.circle(-120, 78)
t.circle(-242, 30)
t.circle(-135, 105)
t.penup()
t.goto(-127, 112)
t.pencolor("orangered")
t.pendown()
t.setheading(60)
t.circle(-155, 136)
t.circle(-116, 86)
t.circle(-220, 30)
t.circle(-134, 103)
t.penup()
t.goto(-123, 108)
t.pencolor("gold")
t.pendown()
t.setheading(60)
t.circle(-150, 136)
t.circle(-104, 86)
t.circle(-220, 30)
t.circle(-126, 102)
t.penup()
t.goto(-120, 104)
t.pencolor("greenyellow")
t.pendown()
t.setheading(60)
t.circle(-145, 136)
t.circle(-90, 83)
t.circle(-220, 30)
t.circle(-120, 100)
t.penup()
#
#
# 眼睛部分
#
# 左黑眼圈
t.penup()
t.goto(-64, 120)
t.pencolor("black")
t.pensize(1)
t.fillcolor('black')
t.begin_fill()
t.pendown()
t.setheading(40)
t.circle(-35, 152)
t.circle(-100, 50)
t.circle(-35, 130)
t.circle(-100, 50)
t.end_fill()
#
# 右黑眼圈
t.penup()
t.goto(51, 82)
t.fillcolor()
t.begin_fill()
t.pendown()
t.setheading(120)
t.circle(-32, 152)
t.circle(-100, 55)
t.circle(-25, 120)
t.circle(-120, 45)
t.end_fill()
#
#
# 填充黑色部分,从右耳开始,填充至右手时,画爱心
#
#
# 右耳黑
t.penup()
t.goto(90, 230)
t.pencolor('black')
t.pensize(1)
t.setheading(40)
t.fillcolor('black')
t.begin_fill()
t.pendown()
t.circle(-30, 170)
t.setheading(125)
t.circle(150, 23)
t.end_fill()
#
# 左耳黑
t.penup()
t.goto(-130, 180)
t.pencolor()
t.pensize(1)
t.fillcolor()
t.begin_fill()
t.pendown()
t.setheading(120)
t.circle(-28, 160)
t.setheading(210)
t.circle(150, 20)
t.end_fill()
#
# 左手黑
t.penup()
t.goto(-180, -55)
t.fillcolor()
t.begin_fill()
t.setheading(-120)
t.pendown()
t.circle(50, 30)
t.circle(-27, 200)
t.circle(-300, 20)
t.setheading(-90)
t.circle(300, 14)
t.end_fill()
#
# 左脚黑
t.penup()
t.goto(-38, -210)
t.fillcolor()
t.begin_fill()
t.pendown()
t.setheading(-155)
t.circle(15, 100)
t.circle(-10, 110)
t.circle(-100, 30)
t.circle(-15, 65)
t.circle(-100, 10)
t.circle(200, 15)
t.setheading(-14)
t.circle(-200, 27)
t.end_fill()
#
# 右脚黑
t.penup()
t.goto(108, -168)
t.fillcolor()
t.begin_fill()
t.pendown()
t.setheading(-115)
t.circle(110, 15)
t.circle(200, 10)
t.circle(-18, 80)
t.circle(-180, 13)
t.circle(-20, 90)
t.circle(15, 60)
t.setheading(42)
t.circle(-200, 29)
t.end_fill()
#
# 右手内部
t.penup()
t.goto(182, 95)
t.pencolor()
t.pensize(1)
t.fillcolor()
t.begin_fill()
t.setheading(95)
t.pendown()
t.circle(-37, 160)
t.circle(-20, 50)
t.circle(-200, 30)
t.end_fill()
#
#
# 画龙点睛作用
#
# 左眼珠子
t.penup()
t.goto(-47, 55)
t.fillcolor("white")
t.begin_fill()
t.pendown()
t.setheading(0)
t.circle(25, 360)
t.end_fill()
t.penup()
t.goto(-45, 62)
t.pencolor("darkslategray")
t.fillcolor("darkslategray")
t.begin_fill()
t.pendown()
t.setheading(0)
t.circle(19, 360)
t.end_fill()
t.penup()
t.goto(-45, 68)
t.fillcolor("black")
t.begin_fill()
t.pendown()
t.setheading(0)
t.circle(10, 360)
t.end_fill()
t.penup()
t.goto(-47, 86)
t.pencolor("white")
t.fillcolor("white")
t.begin_fill()
t.pendown()
t.setheading(0)
t.circle(5, 360)
t.end_fill()
#
# 右眼珠子
t.penup()
t.goto(79, 60)
t.fillcolor("white")
t.begin_fill()
t.pendown()
t.setheading(0)
t.circle(24, 360)
t.end_fill()
t.penup()
t.goto(79, 64)
t.pencolor("darkslategray")
t.fillcolor("darkslategray")
t.begin_fill()
t.pendown()
t.setheading(0)
t.circle(19, 360)
t.end_fill()
t.penup()
t.goto(79, 70)
t.fillcolor("black")
t.begin_fill()
t.pendown()
t.setheading(0)
t.circle(10, 360)
t.end_fill()
t.penup()
t.goto(79, 88)
t.pencolor("white")
t.fillcolor("white")
t.begin_fill()
t.pendown()
t.setheading(0)
t.circle(5, 360)
t.end_fill()
#
# 大黑鼻子
t.penup()
t.goto(37, 80)
t.fillcolor("black")
t.begin_fill()
t.pendown()
t.circle(-8, 130)
t.circle(-22, 100)
t.circle(-8, 130)
t.end_fill()
#
# 小嘴儿
t.penup()
t.goto(-15, 48)
t.setheading(-36)
t.begin_fill()
t.pendown()
t.circle(60, 70)
t.setheading(-132)
t.circle(-45, 100)
t.end_fill()
#
# 右手爱心
t.penup()
t.goto(220, 115)
t.pencolor("brown")
t.pensize(1)
t.fillcolor("brown")
t.begin_fill()
t.pendown()
t.setheading(36)
t.circle(-8, 180)
t.circle(-60, 24)
t.setheading(110)
t.circle(-60, 24)
t.circle(-8, 180)
t.end_fill()
t.penup()
#
#
# 标识
# 文字具体位置需要微调
#
# 专属名
t.pencolor("black")
t.goto(-60, -140)
t.write("Baby's Bing Dwen Dwen", font=('Arial', 10, 'bold italic'))
#
# 奥运时间地点
t.pencolor('red')
t.goto(-36, -160)
t.write("BEIJING 2022", font=('Arial', 12, 'bold italic'))
#
# 奥运五环
t.penup()
t.goto(-5, -170)
t.pendown()
t.pencolor("blue")
t.circle(6)
t.penup()
t.goto(10, -170)
t.pendown()
t.pencolor("black")
t.circle(6)
t.penup()
t.goto(25, -170)
t.pendown()
t.pencolor("brown")
t.circle(6)
t.penup()
t.goto(2, -175)
t.pendown()
t.pencolor("lightgoldenrod")
t.circle(6)
t.penup()
t.goto(16, -175)
t.pendown()
t.pencolor("green")
t.circle(6)
t.penup()
#
# 作者:涂寐
t.pencolor('lightgray')
t.goto(230, -160)
t.write("涂寐编程", font=('Arial', 12, 'bold italic'))
t.goto(230, -180)
t.write("0xtlu.github.io", font=('Arial', 12, 'bold italic'))
#
#
# sleep(2)
t.done()

0x02 封装

  1. 这直接把源码发给媳妇儿是不是得呗揍一顿啊,封装封装~
  2. 首先,把 0x01 处源码 copy 到 冰墩墩.py 中
  3. 然后,安装 pyinstaller 模块:pip install pyinstaller
  4. 简单封装:pyinstaller -F 冰墩墩.py
  5. 运行还弹出shell终端,干啥子咧:pyinstaller -wF 冰墩墩.py
  6. 给媳妇儿整个美美哒应用图标: pyinstaller -wF -i bdd.ico 冰墩墩.py
    注:使用 -i 参数试,图片格式仅可为 ico ;亲身体会,有时图标需要是中等图标界面才能显示
    image
    image

0x03 后记

  1. 玛卡巴卡,又学到了。切勿直接复制粘贴,手敲更能连基础与加深记忆
  2. 呜呜~她对我说谢谢了!哈哈哈,应该是有媳妇的吧
 评论