-
php中文与英文验证码程序代码
英文验证码相对简单,不要作hex处理,直接用色彩值就OK了,yzm.php实例代码如下:
- session_start();
- function rand_create()
- {
- //通知浏览器将要输出PNG图片
- Header("Content-type: image/PNG");
- //准备好随机数发生器种子
- srand((double)microtime()*1000000);
- //准备图片的相关参数
- $im = imagecreate(62,22);
- $black = ImageColorAllocate($im, 0,0,0); //RGB黑色标识符
- $white = ImageColorAllocate($im, 255,255,255); //RGB白色标识符
- $gray = ImageColorAllocate($im, 200,200,200); //RGB灰色标识符
- //开始作图
- imagefill($im,0,0,$gray);
- while(($randval=rand()%100000)<10000);{
- $_SESSION["Auth_code"] = $randval;
- //将四位整数验证码绘入图片
- imagestring($im, 5, 10, 3, $randval, $black);
- }
- //加入干扰象素
- for($i=0;$i<200;$i++){
- $randcolor = ImageColorallocate($im,rand(0,255),rand(0,255),rand(0,255)); //开源代码phpfensi.com
- imagesetpixel($im, rand()%70 , rand()%30 , $randcolor);
- }
- //输出验证图片
- ImagePNG($im);
- //销毁图像标识符
- ImageDestroy($im);
- }
- rand_create();
调用方法<img src=yzm.php />
中文验证码程序如下:
- Header("Content-type: image/PNG");
- $str = "这里设置一中文如果中国WEB第一站www.phpfensi.com";
- $imagesW = 140;
- $imagesH = 40;
- //
- $Auimg = imagecreate($imagesW,$imagesH);
- $bgc = ImageColorAllocate($Auimg,255,255,255);
- $font = "heiti.ttf";//这里设置字体,你可以随便下载一款字体哦。
- $white=imagecolorallocate($Auimg,234,185,95);
- imagearc($Auimg, 150, 8, 20, 20, 75, 170, $white);
- imagearc($Auimg, 180, 7,50, 30, 75, 175, $white);
- imageline($Auimg,20,20,180,30,$white);
- imageline($Auimg,20,18,170,50,$white);
- imageline($Auimg,25,50,80,50,$white);
- $noise_num = 800;
- $line_num = 20;
- imagecolorallocate($Auimg,0xff,0xff,0xff);
- $rectangle_color=imagecolorallocate($Auimg,0xAA,0xAA,0xAA);
- $noise_color=imagecolorallocate($Auimg,0x00,0x00,0x00);
- $font_color=imagecolorallocate($Auimg,0x00,0x00,0x00);
- $line_color=imagecolorallocate($Auimg,0x00,0x00,0x00);
- for($i=0;$i<$noise_num;$i++){
- imagesetpixel($Auimg,mt_rand(0,$imagesW),mt_rand(0,$imagesH),$noise_color);
- }
- for($i=0;$i<$line_num;$i++){
- imageline($Auimg,mt_rand(0,$imagesW),mt_rand(0,$imagesH),mt_rand(0,$imagesW),mt_rand(0,$imagesH),$line_color);
- }
- $mtRnd=rand(0,strlen($str)-4);
- if($mtRnd%2)$mtRnd+=1;
- $str = substr($str,$mtRnd,8);
- $str = iconv("GB2312","UTF-8",$str);
- ImageTTFText($Auimg, 20, 0, 16, 30, $font_color, $font, $str);
- ImagePNG($Auimg);
- ImageDestroy($Auimg);
共同点就是验证码都借助于其它容器来保存如session,cookie等,否则就没有验证的意义了.
原文链接:http://www.phpfensi.com/php/20140909/5160.html
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式