Python生成验证码实例


Posted in Python onAugust 21, 2014

本文实例展示了Python生成验证码的方法,具有很好的实用价值。分享给大家供大家参考。具体实现方法如下:

前台页面代码如下:

<div>
 <img id="authcode_img" alt="验证码" src="/registration/makeimage/{{time}}"/>  
 <!-- time 任意随机数(时间戳),防止页面缓存 导致验证码不能更新-->
 <a href="javascript:refreshCode();" rel="external nofollow" style="color:blue;">看不清换一张</a>
</div>

<script>
 function refreshCode() {
   $('authcode_img').src = "/registration/makeimage/" + Math.random();
 }
</script>

后台程序如下:

import StringIO
import Image, ImageDraw, ImageFont, random  #相应的模块需要安装
from xxx.settings import authcode_font #请确保改字体存在

def make_image(request):
  mp = hashlib.md5()
  mp.update(str(datetime.datetime.now())+str(random.random()))  
  mp_src = mp.hexdigest()
  rand_str = mp_src[0:6]
  font = ImageFont.truetype(authcode_font, 25)
  width = 75
  height = 30
  im = Image.new('RGB',(width,height),'#%s'%mp_src[-7:-1])
  draw = ImageDraw.Draw(im)
  draw.line((random.randint(0,width),random.randint(0,height),random.randint(0,width),random.randint(0,height)))
  draw.line((random.randint(0,width),random.randint(0,height),random.randint(0,width),random.randint(0,height)))
  draw.line((random.randint(0,width),random.randint(0,height),random.randint(0,width),random.randint(0,height)))
  draw.line((random.randint(0,width),random.randint(0,height),random.randint(0,width),random.randint(0,height)))
  draw.line((random.randint(0,width),random.randint(0,height),random.randint(0,width),random.randint(0,height)))
  draw.text((5,2), rand_str, font=font)  
  del draw  
  buffer = StringIO.StringIO()
  im.save(buffer,'jpeg')
  httpResponse = HttpResponse(content=buffer.getvalue(),mimetype="image/jpeg")
  request.session['auth_code'] = rand_str
  return httpResponse

程序效果如下:

Python生成验证码实例

Python 相关文章推荐
python和shell变量互相传递的几种方法
Nov 20 Python
Python调用C/C++动态链接库的方法详解
Jul 22 Python
python端口扫描系统实现方法
Nov 19 Python
Android分包MultiDex策略详解
Oct 30 Python
django admin添加数据自动记录user到表中的实现方法
Jan 05 Python
Sanic框架请求与响应实例分析
Jul 16 Python
python selenium 弹出框处理的实现
Feb 26 Python
Python求一批字符串的最长公共前缀算法示例
Mar 02 Python
通过pycharm使用git的步骤(图文详解)
Jun 13 Python
python库skimage给灰度图像染色的方法示例
Apr 27 Python
Python使用pyexecjs代码案例解析
Jul 13 Python
Python基本的内置数据类型及使用方法
Apr 13 Python
python中去空格函数的用法
Aug 21 #Python
python实现的重启关机程序实例
Aug 21 #Python
实例讲解Python中的私有属性
Aug 21 #Python
Python创建日历实例
Aug 21 #Python
Python实现批量把SVG格式转成png、pdf格式的代码分享
Aug 21 #Python
python生成日历实例解析
Aug 21 #Python
MySQLdb ImportError: libmysqlclient.so.18解决方法
Aug 21 #Python
You might like
PHP eval函数使用介绍
2013/12/08 PHP
简单谈谈php中的unicode和utf8编码
2015/06/10 PHP
thinkPHP中配置的读取与C方法详解
2016/12/05 PHP
PHP调用API接口实现天气查询功能的示例
2017/09/21 PHP
laravel-admin 管理平台获取当前登陆用户信息的例子
2019/10/08 PHP
通过修改referer下载文件的方法
2008/05/11 Javascript
基于jQuery的可以控制左右滚动及自动滚动效果的代码
2010/07/25 Javascript
firefox事件处理之自动查找event的函数(用于onclick=foo())
2010/08/05 Javascript
AngularJS + Node.js + MongoDB开发的基于高德地图位置的通讯录
2015/01/02 Javascript
Javascript中神奇的this
2016/01/20 Javascript
javascript实现简单的on事件绑定
2016/08/23 Javascript
jQuery的ready方法实现原理分析
2016/10/26 Javascript
常用jQuery选择器汇总
2017/02/02 Javascript
vuejs2.0子组件改变父组件的数据实例
2017/05/10 Javascript
微信小程序 五星评分的实现实例
2017/08/04 Javascript
vue项目使用微信公众号支付总结及遇到的坑
2018/10/23 Javascript
微信小程序学习总结(一)项目创建与目录结构分析
2020/06/04 Javascript
[01:02:07]Liquid vs Newbee 2019国际邀请赛小组赛 BO2 第一场 8.15
2019/08/16 DOTA
利用python爬取斗鱼app中照片方法实例
2017/12/03 Python
Python之reload流程实例代码解析
2018/01/29 Python
pandas按若干个列的组合条件筛选数据的方法
2018/04/11 Python
python print输出延时,让其立刻输出的方法
2019/01/07 Python
在pycharm 中添加运行参数的操作方法
2019/01/19 Python
Python学习笔记之For循环用法详解
2019/08/14 Python
Python turtle库绘制菱形的3种方式小结
2019/11/23 Python
Python Tkinter Entry和Text的添加与使用详解
2020/03/04 Python
TensorFlow2.1.0最新版本安装详细教程
2020/04/08 Python
Jupyter安装链接aconda实现过程图解
2020/11/02 Python
应届毕业生求职信范文分享
2013/12/26 职场文书
演讲稿的写法
2014/05/19 职场文书
体育教师求职信
2014/05/24 职场文书
大学生感恩父母演讲稿
2014/08/28 职场文书
投资合作意向书范本
2015/05/08 职场文书
爱国影片观后感
2015/06/18 职场文书
2016年会领导致辞稿
2015/07/29 职场文书
Jupyter Notebook 如何修改字体和大小以及更改字体样式
2021/06/03 Python