里面有两个方法,分别是用内置字体和自定义字体生成验证码。
getVerifyCode();
* header("Content-type:image/png");
* $pic->captchaFromFont($font='RAVIE.TTF'); or $pic->captcha();
*/
class uImage {
/**
* 验证码字符
* @access protected
*/
protected $code;
/**
* 生成图片验证码,直接输出的是图片,字体大小是内置字体,最大是5
* @access public
* @param int $width 验证码图片宽度
* @param int $height 验证码图片的高度
* @param int $snow 背景雪花的数量
* @param int $line 干扰线的条数
*/
public function captcha($width=100, $height=30, $snow=80, $line=3) {
$pic = imagecreatetruecolor($width, $height);
$backageColor = imagecolorallocate($pic, 0xFF, 0xFF, 0xFF);
imagefill($pic, 0, 0, $backageColor);
//打雪花
for($i=0; $i<=$snow;$i++) {
$color = imagecolorallocate($pic, mt_rand(150, 230), mt_rand(150, 230), mt_rand(150, 230));
imagechar($pic, 1, mt_rand(0, $width), mt_rand(0, $height), "*", $color);
imagecolordeallocate ($pic, $color);
}
//画干扰线
for($i=0; $i<=$line; $i++) {
$x1 = mt_rand(2, $width * 0.2);
$x2 = mt_rand($width * 0.8, $width - 2);
$y1 = mt_rand(2, $height - 2);
$y2 = mt_rand(2, $height - 2);
$color = imagecolorallocate($pic, mt_rand(130, 250), mt_rand(130, 250), mt_rand(130, 250));
imageline($pic, $x1, $y1, $x2, $y2, $color);
imagecolordeallocate ($pic, $color);
}
//画字符
$code = $this->code;
$eachW = $width / strlen($code); //图片依据字符个数分配等份数
$fontWidth = imagefontwidth(5); //取得字体宽度
$fontHeight = imagefontheight(5); //取得字体高度
for($i=0; $icode;
$eachW = $width / strlen($code); //图片依据字符个数分配等份数
$codeArray = str_split($code);
for($i=0; $i $height ? $padding : mt_rand($fontHeight+$padding, $height-$padding);
imagettftext($pic, $fontWeight, $angle, $x, $y, $color, $font, $codeArray[$i]); //用 TrueType 字体向图像写入文本
imagecolordeallocate ($pic, $color);
}
//输出
ob_start();
ob_clean();
imagepng($pic);
imagedestroy($pic);
}
/**
* 获取验证码
* @access public
* @param int $len 验证码字符的长度
* @return strint 生成的验证码字符
*/
public function getVerifyCode($len=4){
if(!isset($this->code)){
$this->code = $this->getCode($len);
}
return $this->code;
}
/**
* 生成验证码
* @access protected
* @param int $len 验证码字符的长度
* @return strint 生成的验证码字符
*/
protected function getCode($len) {
$str = "23456789abcdefghijklmnqrstuvwxyz";
$code = "";
for($i=0; $i<$len; $i++) {
$code .= $str{mt_rand(0, strlen($str)-1)};
}
$this->code = $code;
return $code;
}
} 以上就是PHP验证码类的内容,更多相关内容请关注PHP中文网(www.php.cn)!
Modoer 是一款以本地分享,多功能的点评网站管理系统。采用 PHP+MYSQL 开发设计,开放全部源代码。因具有非凡的访问速度和卓越的负载能力而深受国内外朋友的喜爱,不局限于商铺类点评,真正实现了多类型的点评,可以让您的网站点评任何事与物,同时增加产品模块,也更好的网站产品在网站上展示。Modoer点评系统 2.5 Build 20110710更新列表1.同步 旗舰版系统框架2.增加 限制图片









