• 大小: 5.54MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-09-23
  • 语言: Python
  • 标签: Python  

资源简介

利用Python生成验证码图片 代码和字体文件压缩包

资源截图

代码片段和文件信息

# 导入库文件
from PIL import ImageImageFontImageDrawImageFilter
import stringrandomos


# 方法:获得四个随机字母
def getRandomChar():
return [random.choice(string.ascii_letters)for _ in range(4)]

# 方法:获取随机颜色
def getRandomColor():
return (random.randint(30100)random.randint(30100)random.randint(30100))

# 主方法:获取验证码图片
def getCodePicture(fontPathoutPath):
# 图片宽高
width = 240
height = 60
# 创建空白画布
image = Image.new(‘RGB‘(widthheight)(180180180))
# 验证码字体
font = ImageFont.truetype(fontPath40)
# 画出画布,获取画布对象
draw = ImageDraw.Draw(image)
# 创建验证码对象
code = getRandomChar()
# 把验证码画到画布上
for x in range(4):
draw.text((60*x+100)code[x]font=fontfill=getRandomColor())
# 填充噪点
for _ in range(random.randint(15003000)):
draw.point((random.randint(0width)random.randint(0height))fill = getRandomColor())
# 模糊处理
image = image.filter(ImageFilter.BLUR)
# 保存
image.save(outPath+“\\“+““.join(code)+“.jpg“‘jpeg‘)

if __name__ == ‘__main__‘:
getCodePicture(“simsun.ttf“os.getcwd())



 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        1217  2017-07-14 17:21  codepicture.py
     文件    10499104  2012-05-14 11:30  simsun.ttf

评论

共有 条评论