简单数字图片验证码的生成及识别

2020-03-19 17:16:00 浏览数 (1)

网站上的验证码的作用是保护网站安全,一般网站都要通过验证码来防止机器大规模注册,机器暴力破解数据密码等危害。

本文本次讲述的内容是简单的文字图片识别与生成,识别过程调用了百度的API,可自行修改

1.先写一个简单的登录界面,如下图所示

在html页面中添加验证码代码:

代码语言:javascript复制
<td width="90">验证码:  
</td><td><img id="captcha_img" border='1' src='captcha.php?r=echo rand(); ?>' style="width:100px; height:30px" onclick="document.getElementById('captcha_img').src='captcha.php?r=' Math.random()"/></td>

生成验证码的php脚本如下:

代码语言:javascript复制
<?php
 //10>设置session,必须处于脚本最顶部
    session_start();
    $image = imagecreatetruecolor(100, 30); //1>设置验证码图片大小的函数
    //5>设置验证码颜色 imagecolorallocate(int im, int red, int green, int blue);
    $bgcolor = imagecolorallocate($image,255,255,255); //#ffffff
    //6>区域填充 int imagefill(int im, int x, int y, int col) (x,y) 所在的区域着色,col 表示欲涂上的颜色
    imagefill($image, 0, 0, $bgcolor);
    //10>设置变量
    $captcha_code = "";
    //7>生成随机数字
    for($i=0;$i<4;$i  ){
        //设置字体大小
        $fontsize = 6;        
        //设置字体颜色,随机颜色
        $fontcolor = imagecolorallocate($image, rand(0,120),rand(0,120), rand(0,120)); //0-120深颜色
        //设置数字
        $fontcontent = rand(0,9);
        //10>.=连续定义变量
        $captcha_code .= $fontcontent;    
        //设置坐标
        $x = ($i*100/4) rand(5,10);
        $y = rand(5,10);
        imagestring($image,$fontsize,$x,$y,$fontcontent,$fontcolor);
    }
    //10>存到session
    $_SESSION['authcode'] = $captcha_code;
    //8>增加干扰元素,设置雪花点
    for($i=0;$i<200;$i  ){
        //设置点的颜色,50-200颜色比数字浅,不干扰阅读
        $pointcolor = imagecolorallocate($image,rand(50,200), rand(50,200), rand(50,200));        
        //imagesetpixel — 画一个单一像素
        imagesetpixel($image, rand(1,99), rand(1,29), $pointcolor);
    }
    //9>增加干扰元素,设置横线
    for($i=0;$i<4;$i  ){
        //设置线的颜色
        $linecolor = imagecolorallocate($image,rand(80,220), rand(80,220),rand(80,220));
        //设置线,两点一线
        imageline($image,rand(1,99), rand(1,29),rand(1,99), rand(1,29),$linecolor);
    }
    //2>设置头部,image/png
    header('Content-Type: image/png');
    //3>imagepng() 建立png图形函数
    imagepng($image);
    //4>imagedestroy() 结束图形函数 销毁$image
    imagedestroy($image);
?>

识别代码如下,使用python3,注意修改参数:

# -*-coding:utf-8 -*-

import requests

import base64

import json

import os

url = 'XXX'//网页地址

api_url = 'https://aip.baidubce.com/rest/2.0/ocr/v1/general_basic'

headers = {

'Cookie': 'PHPSESSID=0ln5qt5q76jn3tnsjpvtdflnm7',

}

data = {

'name': 'XXX',

'pwd': 'XXX',

}

api_headers = {

'Content-Type': 'application/x-www-form-urlencoded'

}

api_body = {

'access_token':'24.4fb045deade3f3f2b89be3444c75c8ec.2592000.1548491863.282335-11500055',

'language_type': 'ENG'

}

print('Log in automatically...')

#获得验证码

image = requests.get(url 'image.php',headers=headers).content//根据网页图片地址修改此处

api_body['image']=base64.b64encode(image)

#调用baidu-api

res = requests.post(api_url,headers=api_headers,data=api_body).content

res=json.loads(res)

if(len(res['words_result'])==0):

print('Recognition fails')

data['code']=res['words_result'][0]['words']

print(data['code'])

#发起请求

response = requests.post(url 'post.php',headers=headers,data=data)//data内容根据需求修改增加

res=response.text[84:100].split(''')[0]

if res==u'登陆成功':

print('finish')

os.system("pause")

脚本结果如下,小概率识别失败,跑循环解决。

0 人点赞