Python实现网站注册验证码生成类


Posted in Python onJune 08, 2017

本文实例为大家分享了Python网站注册验证码生成类的具体代码,供大家参考,具体内容如下

# -*- coding:utf-8 -*-
'''
Created on 2017年4月7日

@author: Water
'''
import os
import random
import string
import sys
import math
from PIL import Image,ImageDraw,ImageFont,ImageFilter
from django.conf import settings

 
#字体的位置,不同版本的系统会有不同
font_path = os.path.join('/home/workspace/aofeiKart/static', 'fonts/monaco.ttf')#settings.STATIC_ROOT, 'fonts/MONACO.TTF')
font_path = os.path.join(settings.STATIC_ROOT, 'fonts/monaco.ttf')
# print font_path
#生成几位数的验证码
number = 4
#生成验证码图片的高度和宽度
size = (100,30)
#背景颜色,默认为白色
bgcolor = (255,255,255)
#字体颜色,默认为蓝色
fontcolor = (0,0,255)
#干扰线颜色。默认为红色
linecolor = (255,0,0)
#是否要加入干扰线
draw_line = True
#加入干扰线条数的上下限
line_number = (1,5)
 
#用来随机生成一个字符串
# source = list(string.ascii_lowercase+'1234567890')
source = list('1234567890')
def gene_text():
#   return '6666'
  return ''.join(random.sample(source,number))#number是生成验证码的位数
#用来绘制干扰线
def gene_line(draw,width,height):
  begin = (random.randint(0, width), random.randint(0, height))
  end = (random.randint(0, width), random.randint(0, height))
  draw.line([begin, end], fill = linecolor)
 
#生成验证码
def gene_code():
  width,height = size #宽和高
  image = Image.new('RGBA',(width,height),bgcolor) #创建图片
  font = ImageFont.truetype(font_path,25) #验证码的字体
  draw = ImageDraw.Draw(image) #创建画笔
  text = gene_text() #生成字符串
  font_width, font_height = font.getsize(text)
  draw.text(((width - font_width) / number, (height - font_height)/number),text,
      font= font,fill=fontcolor) #填充字符串
  if draw_line:
    gene_line(draw,width,height)
  image = image.transform((width+20,height+10), Image.AFFINE, (1,-0.3,0,-0.1,1,0), Image.BILINEAR) #创建扭曲
  image = image.filter(ImageFilter.EDGE_ENHANCE_MORE) #滤镜,边界加强
  image_file = text+'.png'
  
  image_path = os.path.join(settings.STATIC_ROOT, 'images/%s'%image_file)

  image.save(image_path) #保存验证码图片
  
  return 'http://login.chaozu.net:8000/static/images/%s'%image_file, text

if __name__ == "__main__":
  print gene_code()

实现过程很简单,主要注意有2点:

1.安装PIL库,设置好字体保存目录

2.如果直接返回图片的二进制数据流的?,如下:

buf = io.BytesIO() #io.BytesIO() #io.StringIO() use it to fill str obj
image.save(buf, 'png')
request.session['captcha'] = text.lower() 

return HttpResponse(buf.getvalue(), 'image/png') # return the image data stream as image/jpeg format, browser will treat it as an image

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

Python 相关文章推荐
linux系统使用python监测网络接口获取网络的输入输出
Jan 15 Python
详细解析Python当中的数据类型和变量
Apr 25 Python
用Python进行TCP网络编程的教程
Apr 29 Python
python结合shell查询google关键词排名的实现代码
Feb 27 Python
Python找出最小的K个数实例代码
Jan 04 Python
python PyTorch参数初始化和Finetune
Feb 11 Python
python石头剪刀布小游戏(三局两胜制)
Jan 20 Python
使用Python的SymPy库解决数学运算问题的方法
Mar 27 Python
Python一行代码实现快速排序的方法
Apr 30 Python
python随机模块random的22种函数(小结)
May 15 Python
keras分类模型中的输入数据与标签的维度实例
Jul 03 Python
如何用python反转图片,视频
Apr 24 Python
Python实现多线程抓取网页功能实例详解
Jun 08 #Python
Python中with及contextlib的用法详解
Jun 08 #Python
Python使用pylab库实现画线功能的方法详解
Jun 08 #Python
Python实现对象转换为xml的方法示例
Jun 08 #Python
Python实现的手机号归属地相关信息查询功能示例
Jun 08 #Python
python用pickle模块实现“增删改查”的简易功能
Jun 07 #Python
Python3 socket同步通信简单示例
Jun 07 #Python
You might like
PHP防注入安全代码
2008/04/09 PHP
php使用curl模拟登录后采集页面的例子
2013/11/04 PHP
php创建sprite
2014/02/11 PHP
php使用GeoIP库实例
2014/06/27 PHP
smarty模板引擎中自定义函数的方法
2015/01/22 PHP
PHP实现多图上传和单图上传功能
2018/05/17 PHP
KindEditor在php环境下上传图片功能集成的方法示例
2020/07/20 PHP
实例:用 JavaScript 来操作字符串(一些字符串函数)
2007/02/15 Javascript
node.js中的fs.chmod方法使用说明
2014/12/18 Javascript
javascript组合使用构造函数模式和原型模式实例
2015/06/04 Javascript
JS打字效果的动态菜单代码分享
2015/08/21 Javascript
Javascript中判断一个值是否为undefined的方法详解
2016/09/28 Javascript
js实现常见的工具条效果
2017/03/02 Javascript
js-FCC算法-No repeats please字符串的全排列(详解)
2017/05/02 Javascript
浅谈JavaScript的innerWidth与innerHeight
2017/10/12 Javascript
JavaScript门面模式详解
2017/10/19 Javascript
vue.js项目中实用的小技巧汇总
2017/11/29 Javascript
浅析node.js的模块加载机制
2018/05/25 Javascript
小程序视频列表中视频的播放与停止的示例代码
2018/07/20 Javascript
vue实现简单的星级评分组件源码
2018/11/16 Javascript
[04:42]2015国际邀请赛CDEC战队晋级之路
2015/08/13 DOTA
python基础教程之缩进介绍
2014/08/29 Python
python基础教程之循环介绍
2014/08/29 Python
Python多进程入门、分布式进程数据共享实例详解
2019/06/03 Python
python的pytest框架之命令行参数详解(上)
2019/06/27 Python
python环境搭建和pycharm的安装配置及汉化详细教程(零基础小白版)
2020/08/19 Python
如何在vscode中安装python库的方法步骤
2021/01/06 Python
施华洛世奇西班牙官网:SWAROVSKI西班牙
2019/06/06 全球购物
Martinelli官方商店:西班牙皮鞋和高跟鞋品牌
2019/07/30 全球购物
英国旅行箱包和行李箱购物网站:Travel Luggage & Cabin Bags
2019/08/26 全球购物
会议开场欢迎词
2014/01/15 职场文书
2015年企业新年寄语
2014/12/08 职场文书
委托公证书样本
2015/01/23 职场文书
2016年“我们的节日·端午节”活动总结
2016/04/01 职场文书
Redis6.0搭建集群Redis-cluster的方法
2021/05/08 Redis
教你利用python实现企业微信发送消息
2021/05/23 Python