您的位置:首页 > 编程语言 > PHP开发

PHP验证码的产生原理和实现

2012-08-12 11:25 399 查看
今天在phpchina上看到了有关php验证码的产生原理和实现,觉得不错,贴过来研究了下。

由于注册的时候常常会用到注册码来防止机器恶意注册,这里我发表一个产生png图片验证码的基本图像,很简陋但思想很清晰:

1、产生一张png的图片

2、为图片设置背景色

3、设置字体颜色和样式

4、产生4位数的随机的验证码

5、把产生的每个字符调整旋转角度和位置画到png图片上

6、加入噪点和干扰线防止注册机器分析原图片来恶意注册

7、输出图片

8、释放图片所占内存

authcode.php文件

session_start();

header('Content-type:image/png');

//创建图片

$im = @imagecreate(130,45)or die("Cannot Initialize new GD image stream");

$bg = imagecolorallocate($im,rand(50,200),rand(0,155),rand(0,155));

//第一次对imagecolorallocate()的调用会给基于调色板的图像填充背景色

$fontColor = imageColorAllocate($im,255,255,255); //字体颜色

//$fontstyle = 'Roman.ttf';

$fontstyle = 'C:\WINDOWS\Fonts\arial.ttf';

//字体样式,这个可以从C:\windows\Fonts\文件夹下找到,我把它放到和Authcode,php文件同一个目录,这里可以替换其他的字体样式

//产生随机字符

for($i=0;$i< 4;$i++)

{

$randAsciiNumArray = array(rand(48,57),rand(65,90));

$randAsciiNum = $randAsciiNumArray[rand(0,1)];

$randStr = chr($randAsciiNum);

imagettftext($im,30,rand(0,20)-rand(0,25),5+$i*30,rand(30,35),$fontColor,$fontstyle,$randStr);

$authcode .= $randStr;

}

//用户和用户输入验证码做比较

$_SESSION['authcode'] = $randFourStr;

//干扰线

for($i=0;$i<8;$i++)

{

$lineColor = imagecolorallocate($im,rand(0,255),rand(0,255),rand(0,255));

imageline($im,rand(0,130),0,rand(0,130),145,$lineColor);

}

//干扰点

for($i=0;$i<250;$i++)

{

imagesetpixel($im,rand(0,130),rand(0,145),$fontColor);

}

imagepng($im);

imagedestroy($im);
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  验证码 图片