支持中文字母数字、自定义字体php验证码代码


Posted in PHP onFebruary 27, 2012
<?php 
/* 
* Captcha Class base on PHP GD Lib 
* @author Design 
* @version 1.0 
* @demo 
* include('captchaClass.php'); 
* $captchaDemo=new Captcha(); 
* $captchaDemo->createImage(); 
*/ 
class Captcha{ 
//@定义验证码图片高度 
private $height; 
//@定义验证码图片宽度 
private $width; 
//@定义验证码字符个数 
private $textNum; 
//@定义验证码字符内容 
private $textContent; 
//@定义字符颜色 
private $fontColor; 
//@定义随机出的文字颜色 
private $randFontColor; 
//@定义字体大小 
private $fontSize; 
//@定义字体 
private $fontFamily; 
//@定义背景颜色 
private $bgColor; 
//@定义随机出的背景颜色 
private $randBgColor; 
//@定义字符语言 
private $textLang; 
//@定义干扰点数量 
private $noisePoint; 
//@定义干扰线数量 
private $noiseLine; 
//@定义是否扭曲 
private $distortion; 
//@定义扭曲图片源 
private $distortionImage; 
//@定义是否有边框 
private $showBorder; 
//@定义验证码图片源 
private $image; //@Constructor 构造函数 
public function Captcha(){ 
$this->textNum=4; 
$this->fontSize=16; 
$this->fontFamily='c:\windows\fontsSIMYOU.ttf';//设置中文字体,可以改成linux的目录 
$this->textLang='en'; 
$this->noisePoint=30; 
$this->noiseLine=3; 
$this->distortion=false; 
$this->showBorder=false; 
} 

//@设置图片宽度 
public function setWidth($w){ 
$this->width=$w; 
} 
//@设置图片高度 
public function setHeight($h){ 
$this->height=$h; 
} 
//@设置字符个数 
public function setTextNumber($textN){ 
$this->textNum=$textN; 
} 
//@设置字符颜色 
public function setFontColor($fc){ 
$this->fontColor=sscanf($fc,'#%2x%2x%2x'); 
} 
//@设置字号 
public function setFontSize($n){ 
$this->fontSize=$n; 
} 
//@设置字体 
public function setFontFamily($ffUrl){ 
$this->fontFamily=$ffUrl; 
} 
//@设置字符语言 
public function setTextLang($lang){ 
$this->textLang=$lang; 
} 
//@设置图片背景 
public function setBgColor($bc){ 
$this->bgColor=sscanf($bc,'#%2x%2x%2x'); 
} 
//@设置干扰点数量 
public function setNoisePoint($n){ 
$this->noisePoint=$n; 
} 
//@设置干扰线数量 
public function setNoiseLine($n){ 
$this->noiseLine=$n; 
} 
//@设置是否扭曲 
public function setDistortion($b){ 
$this->distortion=$b; 
} 
//@设置是否显示边框 
public function setShowBorder($border){ 
$this->showBorder=$border; 
} 
//@初始化验证码图片 
public function initImage(){ 
if(empty($this->width)){$this->width=floor($this->fontSize*1.3)*$this->textNum+10;} 
if(empty($this->height)){$this->height=$this->fontSize*2;} 
$this->image=imagecreatetruecolor($this->width,$this->height); 
if(empty($this->bgColor)){ 
$this->randBgColor=imagecolorallocate($this->image,mt_rand(100,255),mt_rand(100,255),mt_rand(100,255)); 
}else{ 
$this->randBgColor=imagecolorallocate($this->image,$this->bgColor[0],$this->bgColor[1],$this->bgColor[2]); 
} 
imagefill($this->image,0,0,$this->randBgColor); 
} 
//@产生随机字符 
public function randText($type){ 
$string=''; 
switch($type){ 
case 'en': 
$str='ABCDEFGHJKLMNPQRSTUVWXY3456789'; 
for($i=0;$i<$this->textNum;$i++){ 
$string=$string.','.$str[mt_rand(0,29)]; 
} 
break; 
case 'cn': 
for($i=0;$i<$this->textNum;$i++) { 
$string=$string.','.chr(rand(0xB0,0xCC)).chr(rand(0xA1,0xBB)); 
} 
$string=iconv('GB2312','UTF-8',$string); //转换编码到utf8 
break; 
} 
return substr($string,1); 
} 
//@输出文字到验证码 
public function createText(){ 
$textArray=explode(',',$this->randText($this->textLang)); 
$this->textContent=join('',$textArray); 
if(empty($this->fontColor)){ 
$this->randFontColor=imagecolorallocate($this->image,mt_rand(0,100),mt_rand(0,100),mt_rand(0,100)); 
}else{ 
$this->randFontColor=imagecolorallocate($this->image,$this->fontColor[0],$this->fontColor[1],$this->fontColor[2]); 
} 
for($i=0;$i<$this->textNum;$i++){ 
$angle=mt_rand(-1,1)*mt_rand(1,20); 
imagettftext($this->image,$this->fontSize,$angle,5+$i*floor($this->fontSize*1.3),floor($this->height*0.75),$this->randFontColor,$this->fontFamily,$textArray[$i]); 
} 
} 
//@生成干扰点 
public function createNoisePoint(){ 
for($i=0;$i<$this->noisePoint;$i++){ 
$pointColor=imagecolorallocate($this->image,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255)); 
imagesetpixel($this->image,mt_rand(0,$this->width),mt_rand(0,$this->height),$pointColor); 
} 
} 
//@产生干扰线 
public function createNoiseLine(){ 
for($i=0;$i<$this->noiseLine;$i++) { 
$lineColor=imagecolorallocate($this->image,mt_rand(0,255),mt_rand(0,255),20); 
imageline($this->image,0,mt_rand(0,$this->width),$this->width,mt_rand(0,$this->height),$lineColor); 
} 
} 
//@扭曲文字 
public function distortionText(){ 
$this->distortionImage=imagecreatetruecolor($this->width,$this->height); 
imagefill($this->distortionImage,0,0,$this->randBgColor); 
for($x=0;$x<$this->width;$x++){ 
for($y=0;$y<$this->height;$y++){ 
$rgbColor=imagecolorat($this->image,$x,$y); 
imagesetpixel($this->distortionImage,(int)($x+sin($y/$this->height*2*M_PI-M_PI*0.5)*3),$y,$rgbColor); 
} 
} 
$this->image=$this->distortionImage; 
} 
//@生成验证码图片 
public function createImage(){ 
$this->initImage(); //创建基本图片 
$this->createText(); //输出验证码字符 
if($this->distortion){$this->distortionText();} //扭曲文字 
$this->createNoisePoint(); //产生干扰点 
$this->createNoiseLine(); //产生干扰线 
if($this->showBorder){imagerectangle($this->image,0,0,$this->width-1,$this->height-1,$this->randFontColor);} //添加边框 
imagepng($this->image); 
imagedestroy($this->image); 
if($this->distortion){imagedestroy($this->$distortionImage);} 
return $this->textContent; 
} 
} 
?>使用方法: 
<?php 
//session_start(); 
header("Content-type:image/png"); 
include('captcha5_class.php'); 
$captcha5=new Captcha(); 
//@设置验证码宽度 
//$captcha5->setWidth(200); 
//@设置验证码高度 
//$captcha5->setHeight(50); 
//@设置字符个数 
$captcha5->setTextNumber(5); 
//@设置字符颜色 
//$captcha5->setFontColor('#ff9900'); 
//@设置字号大小 
//$captcha5->setFontSize(25); 
//@设置字体 
$captcha5->setFontFamily('c:\windows\fonts\STXINGKA.TTF'); 
//@设置语言 
$captcha5->setTextLang('cn'); 
//@设置背景颜色 
//$captcha5->setBgColor('#000000'); 
//@设置干扰点数量 
//$captcha5->setNoisePoint(600); 
//@设置干扰线数量 
//$captcha5->setNoiseLine(10); 
//@设置是否扭曲 
//$captcha5->setDistortion(true); 
//@设置是否显示边框 
$captcha5->setShowBorder(true); 
//输出验证码 
$code=$captcha5->createImage(); 
//$_SESSION['captchaCode']['content']=$code; 
//$_SESSION['captchaCode']['time']=microtime(); 
?>
PHP 相关文章推荐
配置Apache2.2+PHP5+CakePHP1.2+MySQL5运行环境
Apr 25 PHP
PHP通用检测函数集合
Feb 08 PHP
PHP之数组学习
May 29 PHP
php使用pack处理二进制文件的方法
Jul 03 PHP
php异步多线程swoole用法实例
Nov 14 PHP
Java和PHP在Web开发方面对比分析
Mar 01 PHP
php实现PDO中捕获SQL语句错误的方法
Feb 16 PHP
PHP实现对图片的反色处理功能【测试可用】
Feb 01 PHP
PHP实现百度人脸识别
May 06 PHP
PHP结合Redis+MySQL实现冷热数据交换应用案例详解
Jul 09 PHP
php多进程应用场景实例详解
Jul 22 PHP
通过PHP实现用户注册后邮箱验证激活
Nov 10 PHP
一些需要禁用的PHP危险函数(disable_functions)
Feb 23 #PHP
PHP面向对象法则
Feb 23 #PHP
优化PHP程序的方法小结
Feb 23 #PHP
数据库中排序的对比及使用条件详解
Feb 23 #PHP
PHP中几个常用的魔术常量
Feb 23 #PHP
PHP教程之PHP中shell脚本的使用方法分享
Feb 23 #PHP
php tp验证表单与自动填充函数代码
Feb 22 #PHP
You might like
谏山创故乡大分县日田市水坝将设立《进击的巨人》立艾伦、三笠以及阿尔敏的铜像!
2020/03/06 日漫
php 自写函数代码 获取关键字 去超链接
2010/02/08 PHP
提高PHP编程效率的方法
2013/11/07 PHP
php获取域名的google收录示例
2014/03/24 PHP
PHP递归复制、移动目录的自定义函数分享
2014/11/18 PHP
PHP人民币金额转大写实例代码
2015/10/02 PHP
php语言中使用json的技巧及json的实现代码详解
2015/10/27 PHP
php版微信公众平台之微信网页登陆授权示例
2016/09/23 PHP
PHP实现的mysql读写分离操作示例
2018/05/22 PHP
select组合框option的捕捉实例代码
2008/09/30 Javascript
基于jquery的文本框与autocomplete结合使用(asp.net+json)
2012/05/30 Javascript
JS实现下拉菜单赋值到文本框的方法
2015/08/18 Javascript
javascript中sort() 方法使用详解
2015/08/30 Javascript
第二篇Bootstrap起步
2016/06/21 Javascript
jQuery Easyui Datagrid实现单行的上移下移及保存移动的结果
2016/08/15 Javascript
详解AngularJs中$resource和restfu服务端数据交互
2016/09/21 Javascript
使用Javascript判断浏览器终端设备(PC、IOS(iphone)、Android)
2017/01/04 Javascript
那些精彩的JavaScript代码片段
2017/01/12 Javascript
微信小程序入门之广告条实现方法示例
2018/12/05 Javascript
vue 组件中使用 transition 和 transition-group实现过渡动画
2019/07/09 Javascript
JS中比Switch...Case更优雅的多条件判断写法
2019/09/05 Javascript
javascript 对象 与 prototype 原型用法实例分析
2019/11/11 Javascript
Nuxt v-bind绑定img src不显示的解决
2019/12/05 Javascript
vue2路由基本用法实例分析
2020/03/06 Javascript
JQuery实现折叠式菜单的详细代码
2020/06/03 jQuery
jQuery实现雪花飘落效果
2020/08/02 jQuery
python将字符串转换成数组的方法
2015/04/29 Python
Django model update的多种用法介绍
2020/03/28 Python
python json.dumps() json.dump()的区别详解
2020/07/14 Python
html5实现完美兼容各大浏览器的播放器
2014/12/26 HTML / CSS
CAT鞋英国官网:坚固耐用的靴子和鞋
2016/10/21 全球购物
简述Linux文件系统通过i节点把文件的逻辑结构和物理结构转换的工作过程
2016/01/06 面试题
小学中秋节活动方案
2014/02/06 职场文书
《秋游》教学反思
2014/04/24 职场文书
2014国庆节主题活动方案:快乐的国庆节
2014/09/16 职场文书
2019年冬至:天冷暖人心的问候祝福语大全
2019/12/20 职场文书