发布于2019-08-19 17:18 阅读(1161) 评论(0) 点赞(2) 收藏(1)
import random
from PIL import Image
from PIL import ImageDraw
from PIL import ImageFont
from io import BytesIO
class GetValidImg(object):
def __init__(self, width=300, height=60, code_count=5, font_size=32,
point_count=20, line_count=3, img_format='png'):
"""
可以生成一个经过降噪后的随机验证码的图片
:param width: 图片宽度 单位px
:param height: 图片高度 单位px
:param code_count: 验证码个数
:param font_size: 字体大小
:param point_count: 噪点个数
:param line_count: 划线个数
:param img_format: 图片格式
:return 生成的图片的bytes类型的data
FreeMono.ttf为字体文件,需要指定字体文件路径
"""
self.width = width
self.height = height
self.code_count = code_count
self.font_size = font_size
self.point_count = point_count
self.line_count = line_count
self.img_format = img_format
@staticmethod
def get_random_color():
"""获取一个随机颜色(r,g,b)格式的"""
c1 = random.randint(0, 255)
c2 = random.randint(0, 255)
c3 = random.randint(0, 255)
return c1, c2, c3
@staticmethod
def get_random_str():
"""获取一个随机字符串,每个字符的颜色也是随机的"""
random_num = str(random.randint(0, 9))
random_low_alpha = chr(random.randint(97, 122))
random_upper_alpha = chr(random.randint(65, 90))
random_char = random.choice([random_num, random_low_alpha, random_upper_alpha])
return random_char
def get_valid_code_img(self):
# 获取一个Image对象,参数分别是RGB模式。宽150,高30,随机颜色
image = Image.new('RGB', (self.width, self.height), self.get_random_color())
# 获取一个画笔对象,将图片对象传过去
draw = ImageDraw.Draw(image)
# 获取一个font字体对象参数是ttf的字体文件的目录,以及字体的大小
# 这里不能使用相对路径,否则部署代码时会出错,所以要借助os库实现绝对路径
import os
base_dir = os.path.dirname(os.path.abspath(__file__))
font_path = os.path.join(base_dir, 'FreeMono.ttf')
font = ImageFont.truetype(font_path, size=self.font_size)
# 保存随机字符,以供验证用户输入的验证码是否正确时使用
get_valid_num = ""
for i in range(self.code_count):
# 循环5次,获取5个随机字符串
random_char = self.get_random_str()
# 在图片上一次写入得到的随机字符串,参数是:定位(宽度 高度定位),字符串,颜色,字体
draw.text((10 + i * self.height, 12), random_char, self.get_random_color(), font=font)
# 保存随机字符,以供验证用户输入的验证码是否正确时使用
get_valid_num += random_char
# 噪点噪线
# 划线
for i in range(self.line_count):
x1 = random.randint(0, self.width)
x2 = random.randint(0, self.width)
y1 = random.randint(0, self.height)
y2 = random.randint(0, self.height)
draw.line((x1, y1, x2, y2), fill=self.get_random_color())
# 画点
for i in range(self.point_count):
draw.point([random.randint(0, self.width), random.randint(0, self.height)], fill=self.get_random_color())
x = random.randint(0, self.width)
y = random.randint(0, self.height)
draw.arc((x, y, x + 4, y + 4), 0, 90, fill=self.get_random_color())
# 保存本地或内存加载二选一
# 保存到硬盘,名为test.png格式为png的图片
image.save(open('test.png', 'wb'), 'png')
# 不需要在硬盘上保存文件,直接在内存中加载就可以
io_obj = BytesIO()
# 将生成的图片数据保存在io对象中
image.save(io_obj, "png")
# 从io对象里面取上一步保存的数据
img_data = io_obj.getvalue()
return img_data, get_valid_num
if __name__ == '__main__':
img = GetValidImg()
img_show, get_valid_num = img.get_valid_code_img()
print(get_valid_num)
作者:滴水
链接:https://www.pythonheidong.com/blog/article/48859/c8520153fa01a4142c6c/
来源:python黑洞网
任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任
昵称:
评论内容:(最多支持255个字符)
---无人问津也好,技不如人也罢,你都要试着安静下来,去做自己该做的事,而不是让内心的烦躁、焦虑,坏掉你本来就不多的热情和定力
Copyright © 2018-2021 python黑洞网 All Rights Reserved 版权所有,并保留所有权利。 京ICP备18063182号-1
投诉与举报,广告合作请联系vgs_info@163.com或QQ3083709327
免责声明:网站文章均由用户上传,仅供读者学习交流使用,禁止用做商业用途。若文章涉及色情,反动,侵权等违法信息,请向我们举报,一经核实我们会立即删除!