-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMy_pillow.py
More file actions
23 lines (23 loc) · 832 Bytes
/
Copy pathMy_pillow.py
File metadata and controls
23 lines (23 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from PIL import Image, ImageFilter,ImageFont,ImageDraw
import random
# im=Image.open('/home/ts/Desktop/test.jpg')
# im2=im.filter(ImageFilter.BLUR)
# im2.save('/home/ts/Desktop/blur.jpg','jpeg')
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('Arial.ttf',36)
draw=ImageDraw.Draw(image)
for x in range(width):
for y in range(height):
draw.point((x, y), fill=rndColor())
for t in range(4):
draw.text(((60*t+10,10)),rndChar(),font=font,fill=rndColor2())
image=image.filter(ImageFilter.BLUR)
image.save('code.jpg','jpeg')