python生成图片验证码_python生成图片验证码

下面的代码是使用python生成图片验证码,然后结合flask,返回给前端显示。font_type指定字体路径,这里使用Mac原版字体Monaco.tar,运行程序,打开浏览器访问:localhost:18888/code/

#!/usr/bin/env python

#coding=utf-8

import random

import Image, ImageDraw, ImageFont, ImageFilter

import StringIO

from flask import Flask

#map:将str函数作用于后面序列的每一个元素

numbers = ''.join(map(str, range(10)))

chars = ''.join((numbers))

def create_validate_code(size=(120, 30),

chars=chars,

mode="RGB",

bg_color=(255, 255, 255),

fg_color=(255, 0, 0),

font_size=18,

font_type="Monaco.ttf",

length=4,

draw_points=True,

point_chance = 2):

'''''

size: 图片的大小,格式(宽,高),默认为(120, 30)

chars: 允许的字符集合,格式字符串

mode: 图片模式,默认为RGB

bg_color: 背景颜色,默认为白色

fg_color: 前景色,验证码字符颜色

font_size: 验证码字体大小

font_type: 验证码字体,默认为 Monaco.ttf

length: 验证码字符个数

draw_points: 是否画干扰点

point_chance: 干扰点出现的概率,大小范围[0, 50]

'''

width, height = size

img = Image.new(mode, size, bg_color) # 创建图形

draw = ImageDraw.Draw(img) # 创建画笔

def get_chars():

'''''生成给定长度的字符串,返回列表格式'''

return random.sample(chars, length)

def create_points():

'''''绘制干扰点'''

chance = min(50, max(0, int(point_chance))) # 大小限制在[0, 50]

for w in xrange(width):

for h in xrange(height):

tmp = random.randint(0, 50)

if tmp > 50 - chance:

draw.point((w, h), fill=(0, 0, 0))

def create_strs():

'''''绘制验证码字符'''

c_chars = get_chars()

strs = '%s' % ''.join(c_chars)

font = ImageFont.truetype(font_type, font_size)

font_width, font_height = font.getsize(strs)

draw.text(((width - font_width) / 3, (height - font_height) / 4),

strs, font=font, fill=fg_color)

return strs

if draw_points:

create_points()

strs = create_strs()

# 图形扭曲参数

params = [1 - float(random.randint(1, 2)) / 100,

0,

0,

0,

1 - float(random.randint(1, 10)) / 100,

float(random.randint(1, 2)) / 500,

0.001,

float(random.randint(1, 2)) / 500

]

img = img.transform(size, Image.PERSPECTIVE, params) # 创建扭曲

img = img.filter(ImageFilter.EDGE_ENHANCE_MORE) # 滤镜,边界加强(阈值更大)

return img,strs

app = Flask(__name__)

@app.route('/')

def index():

return 'test'

@app.route('/code/')

def get_code():

#把strs发给前端,或者在后台使用session保存

code_img,strs = create_validate_code()

buf = StringIO.StringIO()

code_img.save(buf,'JPEG',quality=70)

buf_str = buf.getvalue()

response = app.make_response(buf_str)

response.headers['Content-Type'] = 'image/jpeg'

return response

if __name__ == "__main__":

app.run(host="localhost",port=18888,debug=True)

转载请注明来自:Alex

Zhou,本文链接:http://codingnow.cn/python/627.html

分享到:

18e900b8666ce6f233d25ec02f95ee59.png

72dd548719f0ace4d5f9bca64e1d7715.png

2012-09-26 00:33

浏览 677

评论

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
生成验证码图片可以使用 Python 中的 Pillow 库和随机数库,具体步骤如下: 1. 导入需要的库: ```python from PIL import Image, ImageDraw, ImageFont import random ``` 2. 定义生成随机字符串的函数: ```python def generate_random_str(length): # 定义随机字符串的备选值 candidates = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ' # 从备选值中随机选择指定长度的字符串 return ''.join(random.choices(candidates, k=length)) ``` 3. 定义生成验证码图片的函数: ```python def generate_verification_code(width, height, length): # 创建画布 image = Image.new('RGB', (width, height), color=(255, 255, 255)) # 创建画笔 draw = ImageDraw.Draw(image) # 设置字体 font = ImageFont.truetype('arial.ttf', size=30) # 生成随机字符串 code = generate_random_str(length) # 在画布上绘制字符串 for i in range(length): draw.text((10 + i * 20, 10), code[i], font=font, fill=random.choice([(0, 0, 0), (255, 0, 0), (0, 0, 255)])) # 添加干扰点 for i in range(100): draw.point((random.randint(0, width), random.randint(0, height)), fill=(0, 0, 0)) # 添加干扰线 for i in range(5): draw.line([(random.randint(0, width), random.randint(0, height)), (random.randint(0, width), random.randint(0, height))], fill=(0, 0, 0)) # 返回验证码图片和对应的字符串 return image, code ``` 4. 调用函数生成验证码图片: ```python image, code = generate_verification_code(120, 40, 4) image.show() ``` 以上代码中,`generate_random_str` 函数用于生成指定长度的随机字符串,`generate_verification_code` 函数用于生成指定宽度、高度和长度的验证码图片,并返回图片对象和对应的字符串。在绘制字符串时,使用了随机的字体颜色,以及添加了干扰点和干扰线,增加了验证码的复杂度。最后调用 `show` 方法显示生成验证码图片。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值