python 生成图形验证码的方法示例


Posted in Python onNovember 11, 2018

日常在网站使用过程中经常遇到图形验证,今天准备自己做个图形验证码,这算是个简单的功能,也适合新手练习的,便于自己学习。

主要用到的库--PIL图像处理库,简单的思路,我们需要随机的颜色,随机的数字或字母,随机的线条、点作为干扰元素 拼凑成一张图片。

生成随机颜色,返回的是rgb三色。

def getRandomColor():
  r = random.randint(0, 255)
  g = random.randint(0, 255)
  b = random.randint(0, 255)
  return (r, g, b)

从数字、大小写字母里生成随机字符。

def getRandomChar():
  random_num = str(random.randint(0, 9))
  random_lower = chr(random.randint(97, 122)) # 小写字母a~z
  random_upper = chr(random.randint(65, 90)) # 大写字母A~Z
  random_char = random.choice([random_num, random_lower, random_upper])
  return random_char

图片操作,生成一张随机背景色的图片,随机生成5种字符+5种颜色,在图片上描绘字,由于默认的字体很小,还需要对字进行处理,不同系统下的字体文件存放位置不一样,这里我是把window下的 arial.ttf 字体复制到了当前文件夹下直接使用的。

# 图片宽高
width = 160
height = 50

def createImg():
  bg_color = getRandomColor()
  # 创建一张随机背景色的图片
  img = Image.new(mode="RGB", size=(width, height), color=bg_color)
  # 获取图片画笔,用于描绘字
  draw = ImageDraw.Draw(img)
  # 修改字体
  font = ImageFont.truetype(font="arial.ttf", size=36)
  for i in range(5):
    # 随机生成5种字符+5种颜色
    random_txt = getRandomChar()
    txt_color = getRandomColor()
    # 避免文字颜色和背景色一致重合
    while txt_color == bg_color:
      txt_color = getRandomColor()
    # 根据坐标填充文字
    draw.text((10 + 30 * i, 3), text=random_txt, fill=txt_color, font=font)
  # 打开图片操作,并保存在当前文件夹下
  with open("test.png", "wb") as f:
    img.save(f, format="png")

这个时候可以看到文件夹下面的图片

python 生成图形验证码的方法示例

这里是张很清晰的图片,为了有干扰元素,这里还需要在图片加入些线条、点作为干扰点。

随机画线,在图片宽高范围内随机生成2个坐标点,并通过随机颜色产生线条。

def drawLine(draw):
  for i in range(5):
    x1 = random.randint(0, width)
    x2 = random.randint(0, width)
    y1 = random.randint(0, height)
    y2 = random.randint(0, height)
    draw.line((x1, y1, x2, y2), fill=getRandomColor())

随机画点,随机生成横纵坐标点。

def drawPoint(draw):
  for i in range(50):
    x = random.randint(0, width)
    y = random.randint(0, height)
    draw.point((x,y), fill=getRandomColor())

生成方法

def createImg():
  bg_color = getRandomColor()
  # 创建一张随机背景色的图片
  img = Image.new(mode="RGB", size=(width, height), color=bg_color)
  # 获取图片画笔,用于描绘字
  draw = ImageDraw.Draw(img)
  # 修改字体
  font = ImageFont.truetype(font="arial.ttf", size=36)
  for i in range(5):
    # 随机生成5种字符+5种颜色
    random_txt = getRandomChar()
    txt_color = getRandomColor()
    # 避免文字颜色和背景色一致重合
    while txt_color == bg_color:
      txt_color = getRandomColor()
    # 根据坐标填充文字
    draw.text((10 + 30 * i, 3), text=random_txt, fill=txt_color, font=font)
  # 画干扰线点
  drawLine(draw)
  drawPoint(draw)
  # 打开图片操作,并保存在当前文件夹下
  with open("test.png", "wb") as f:
    img.save(f, format="png")

最终生成的图片

python 生成图形验证码的方法示例

这里介绍的是图片生成的方法,可以将图片直接显示在前端,也可以使用接口返回url。用Django做的,需要注意的是图片保存的路径。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python正则表达式去掉数字中的逗号(python正则匹配逗号)
Dec 25 Python
从零学python系列之浅谈pickle模块封装和拆封数据对象的方法
May 23 Python
Python中tell()方法的使用详解
May 24 Python
深入浅析python中的多进程、多线程、协程
Jun 22 Python
python daemon守护进程实现
Aug 27 Python
Python语言描述最大连续子序列和
Dec 05 Python
Python + OpenCV 实现LBP特征提取的示例代码
Jul 11 Python
Python OpenCV实现鼠标画框效果
Aug 19 Python
python 下 CMake 安装配置 OPENCV 4.1.1的方法
Sep 30 Python
基于python实现FTP文件上传与下载操作(ftp&sftp协议)
Apr 01 Python
Python爬取微信小程序通用方法代码实例详解
Sep 29 Python
Python __slots__的使用方法
Nov 15 Python
老生常谈python中的重载
Nov 11 #Python
Django跨域请求CSRF的方法示例
Nov 11 #Python
Python rstrip()方法实例详解
Nov 11 #Python
python requests爬取高德地图数据的实例
Nov 10 #Python
Python爬取商家联系电话以及各种数据的方法
Nov 10 #Python
Python中的取模运算方法
Nov 10 #Python
在Python中获取两数相除的商和余数方法
Nov 10 #Python
You might like
Netflix将与CLAMP、乙一以及冲方丁等6名知名制作人合伙展开原创动画计划!
2020/03/06 日漫
php自定义hash函数实例
2015/05/05 PHP
基于Laravel实现的用户动态模块开发
2017/09/21 PHP
js实现鼠标拖动图片并兼容IE/FF火狐/谷歌等主流浏览器
2013/06/06 Javascript
字符串反转_JavaScript
2016/04/28 Javascript
JavaScript中的this使用详解
2016/07/27 Javascript
AngularJS入门教程之表格实例详解
2016/07/27 Javascript
js a标签点击事件
2017/03/30 Javascript
详解JavaScript数组过滤相同元素的5种方法
2017/05/23 Javascript
BootStrap Table 后台数据绑定、特殊列处理、排序功能
2017/05/27 Javascript
Node.js利用js-xlsx处理Excel文件的方法详解
2017/07/05 Javascript
vue中echarts3.0自适应的方法
2018/02/26 Javascript
使用vue-cli导入Element UI组件的方法
2018/05/16 Javascript
Intellij IDEA搭建vue-cli项目的方法步骤
2018/10/20 Javascript
vue中组件的3种使用方式详解
2019/03/23 Javascript
12个提高JavaScript技能的概念(小结)
2019/05/09 Javascript
JavaScript实现拖拽功能
2020/02/11 Javascript
详解JavaScript中的链式调用
2020/11/27 Javascript
[15:58]DOTA2国际邀请赛采访专栏:Tongfu.Sansheng&KingJ,DK.rOtk
2013/08/08 DOTA
75条笑死人的知乎神回复,用60行代码就爬完了
2019/05/06 Python
10 行Python 代码实现 AI 目标检测技术【推荐】
2019/06/14 Python
python 进程间数据共享multiProcess.Manger实现解析
2019/09/23 Python
使用python快速在局域网内搭建http传输文件服务的方法
2019/11/14 Python
python如何实现不用装饰器实现登陆器小程序
2019/12/14 Python
深入浅析Python 命令行模块 Click
2020/03/11 Python
Python自动化之UnitTest框架实战记录
2020/09/08 Python
Anaconda使用IDLE的实现示例
2020/09/23 Python
纯CSS实现预加载动画效果
2017/09/06 HTML / CSS
纯css3制作煽动翅膀的蝴蝶的示例
2018/04/23 HTML / CSS
使用iframe+postMessage实现页面跨域通信的示例代码
2020/01/14 HTML / CSS
会计师事务所审计实习自我鉴定
2013/09/20 职场文书
机关单位动员会主持词
2014/03/20 职场文书
一年级评语大全
2014/04/23 职场文书
2014年环保局工作总结
2014/12/11 职场文书
如何搭建 MySQL 高可用高性能集群
2021/06/21 MySQL
Python字符串常规操作小结
2022/04/03 Python