-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathyanzhengma.py
40 lines (26 loc) · 851 Bytes
/
yanzhengma.py
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
#!/usr/bin/env python
# coding=utf-8
import Image
import ImageDraw
import ImageFont
import ImageFilter
import random
def rndChar():
return chr(random.randint(65, 90))
def rndColor():
return (random.randint(64, 255), random.randint(
64, 255), random.randint(64, 255))
def rndColor2():
return (random.randint(32, 127), random.randint(32, 127), random.randint(32, 127))
width=60 * 4
height=60
image=Image.new('RGB', (width, height), (255, 255, 255))
font=ImageFont.truetype('/usr/share/fonts/truetype/freefont/FreeSansBold.ttf',36)
draw=ImageDraw.Draw(image)
for x in range(width):
for y in range(height):
draw.point((x, y), fill = rndColor())
for i in range(4):
draw.text((60 * i + 10, 10), rndChar(), font = font, fill = rndColor())
#image=image.filter(ImageFilter.BLUR)
image.save('code.jpg', 'JPEG')