• 大小: 2KB
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2021-06-14
  • 语言: Python
  • 标签: python  验证码  

资源简介

python生成扭曲带干扰验证码,主要用于做训练集,可自行配置字体,干扰线数

资源截图

代码片段和文件信息

import random
import string
import sys
import math
from PIL import ImageImageDrawImageFontImageFilter

#===该程序的目录===
filename=“D:/“


typen=2
typet=[
“arialbd.ttf“
“corbelb.ttf“
]
#字体的位置
font_path = “C:/Windows/Fonts/“
#生成几位数的验证码
#生成验证码图片的高度和宽度
size = (180180)

#用来绘制干扰线
def gene_line(draw):
    py = random.randint(0 3)
    begin = (-py*50 random.randint(0 100))
    end = (200-py*50 random.randint(0 100))
    draw.line([begin end] fill = 0width=5)

#生成验证码
def gene_code():
    widthheight = size #宽和高
    image = Image.new(‘1‘(widthheight)1) #创建图片
    font = ImageFont.truetype(font_path+typet[random.randint(0 typen-1)]70) #验证码的字体
    draw = ImageDraw.Draw(image)  #创建画笔
    source = [‘0‘‘1‘‘2‘‘3‘‘4‘‘5‘‘6‘‘

评论

共有 条评论