三行 Python 代码制作图片验证码
Python中文社区
共 3263字,需浏览 7分钟
·
2020-08-28 06:01
Pillow库
1、Image:含有图片对象主体上的一些应用 2、ImageDraw:画笔,用来向图片上添加验证码 3、ImageFont:设置验证码的字体形式 4、ImageFilter:对图片验证码进行模糊处理
from PIL import Image,ImageDraw,ImageFont,ImageFilter
import random,string
#获取随机4个字符组合
def getRandomChar():
chr_all = string.ascii_letters+string.digits
chr_4 = ''.join(random.sample(chr_all,4))
return chr_4
#获取随机颜色
def getRandomColor(low,high):
return (random.randint(low,high),random.randint(low,high),random.randint(low,high))
#制作验证码图片
def getPicture():
width,height = 180,60
#创建空白画布
image = Image.new('RGB',(width,height),getRandomColor(20,100))
#验证码的字体
font = ImageFont.truetype('C:/Windows/fonts/stxinwei.ttf',40)
#创建画笔
draw = ImageDraw.Draw(image)
#获取验证码
char_4 = getRandomChar()
#向画布上填写验证码
for i in range(4):
draw.text((40*i+10,0),char_4[i],font = font,fill=getRandomColor(100,200))
#绘制干扰点
for x in range(random.randint(200,600)):
x = random.randint(1,width-1)
y = random.randint(1,height-1)
draw.point((x,y),fill=getRandomColor(50,150))
#模糊处理
image = image.filter(ImageFilter.BLUR)
image.save('./%s.jpg' % char_4)
abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
captcha库
pip install captcha -i https://pypi.tuna.tsinghua.edu.cn/simple
from captcha.image import ImageCaptcha
import random,string
chr_all = string.ascii_letters + string.digits
chr_4 = ''.join(random.sample(chr_all, 4))
image = ImageCaptcha().generate_image(chr_4)
image.save('./%s.jpg' % chr_4)
gvcode库
pip install graphic-verification-code -i https://pypi.tuna.tsinghua.edu.cn/simple
import gvcode
s,v = gvcode.generate()
s.save('./%s.jpg' % v)
print(type(s))
print(v)
print(type(v))
说在最后
Python中文社区作为一个去中心化的全球技术社区,以成为全球20万Python中文开发者的精神部落为愿景,目前覆盖各大主流媒体和协作平台,与阿里、腾讯、百度、微软、亚马逊、开源中国、CSDN等业界知名公司和技术社区建立了广泛的联系,拥有来自十多个国家和地区数万名登记会员,会员来自以工信部、清华大学、北京大学、北京邮电大学、中国人民银行、中科院、中金、华为、BAT、谷歌、微软等为代表的政府机关、科研单位、金融机构以及海内外知名公司,全平台近20万开发者关注。
长按扫码添加“Python小助手”
进入 P Y 交 流 群
▼点击成为社区会员 喜欢就点个在看吧
评论