码迷,mamicode.com
首页 > 编程语言 > 详细

Python验证码

时间:2017-06-13 18:18:56      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:ext   ima   char   对象   image   type   随机   int   efi   

 

from PIL import Image, ImageDraw, ImageFont, ImageFilter

import random

# 随机字母:
def rndChar():
return chr(random.randint(65, 90))

# 随机颜色1:
def rndColor():
return (random.randint(64, 255), random.randint(64, 255), random.randint(64, 255))

# 随机颜色2:
def rndColor2():
return (random.randint(32, 127), random.randint(32, 127), random.randint(32, 127))

# 240 x 60:
width = 60 * 4
height = 60
image = Image.new(‘RGB‘, (width, height), (255, 255, 255))
# 创建Font对象:
font = ImageFont.truetype(‘C:\Windows\Fonts\Arial.ttf‘, 36)
# 创建Draw对象:
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‘)
image.show(‘code.jpg‘, ‘jpeg‘)

Python验证码

标签:ext   ima   char   对象   image   type   随机   int   efi   

原文地址:http://www.cnblogs.com/888888CN/p/7002574.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!