博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PHP 代码生成图片验证码!你们值得拥有
阅读量:6261 次
发布时间:2019-06-22

本文共 1430 字,大约阅读时间需要 4 分钟。

  hot3.png

/**  * 验证码生成代码 */ function getVerify() {
   $len = 4;    $str = "ABCDEFGHIJKLNMPQRSTUVWXYZ123456789";    $im = imagecreatetruecolor ( 70, 20 );    $bgc = imagecolorallocate($im, 255, 255, 255);    $bgtxt = imagecolorallocate($im, 220, 220, 220);    //随机调色板    $colors = array(        imagecolorallocate($im, 255, 0, 0),        imagecolorallocate($im, 0, 200, 0),        imagecolorallocate($im, 0, 0, 255),        imagecolorallocate($im, 0, 0, 0),        imagecolorallocate($im, 255, 128, 0),        imagecolorallocate($im, 255, 208, 0),        imagecolorallocate($im, 98, 186, 245),    );    //填充背景色    imagefill($im, 0, 0, $bgc);    //随机获取数字    $verify = "";    while (strlen($verify) < $len) {
       $i = strlen($verify);        $random = $str[rand(0, strlen($str))];        $verify .= $random;        //绘制背景文字        imagestring($im, 6, ($i*10)+3, rand(0,6), $random, $bgtxt);        //绘制主文字信息        imagestring($im, 6, ($i*10)+3, rand(0,6), $random, $colors[rand(0, count($colors)-1)]);    }    //添加随机杂色    for($i=0; $i<100; $i++) {
       $color = imagecolorallocate($im, rand(50,220), rand(50,220), rand(50,220));        imagesetpixel($im, rand(0,70), rand(0,20), $color);    }    //将验证码存入$_SESSION中    $_SESSION["verify"]=$verify;    //输出图片并释放缓存    header('Content-type: image/png');    imagepng($im);    imagedestroy($im); }

转载于:https://my.oschina.net/Peron/blog/484359

你可能感兴趣的文章
物理引擎中velocity的单位是个什么鬼?
查看>>
oracle的drop命令
查看>>
设计与梳理企业二级流程的路线方法
查看>>
垃圾回收概念与算法
查看>>
TFS实现需求工作项自动级联保存
查看>>
springmvc 4.x 处理json 数据时中文乱码
查看>>
Python练习(day7)
查看>>
网络工程师笔试题总结
查看>>
飞舞的蝴蝶
查看>>
Async Performance: Understanding the Costs of Async and Await
查看>>
POJ2771_Guardian of Decency(二分图/最大独立集=N-最大匹配)
查看>>
Cocos2d-x之MenuItem
查看>>
远程共享文件夹
查看>>
[转] C/C++中printf和C++中cout的输出格式
查看>>
swift 如何实现点击view后显示灰色背景
查看>>
【Android】3.9 覆盖物功能
查看>>
MySQL也有潜规则 – Select 语句不加 Order By 如何排序?
查看>>
搭建SolrCloud的详细步骤
查看>>
svn的安装与使用
查看>>
基于Linux下Iptables限制BT下载的研究
查看>>