由于注册的时候常常会用到注册码来防止机器恶意注册,这里我发表一个产生png图片验证码的基本图像,很简陋但思想很清晰:
1、产生一张png的图片
2、为图片设置背景色
3、设置字体颜色和样式
4、产生4位数的随机的验证码
5、把产生的每个字符调整旋转角度和位置画到png图片上
6、加入噪点和干扰线防止注册机器分析原图片来恶意注册
7、输出图片
8、释放图片所占内存
authcode.php文件,代码如下:
- <?php
- session_start ();
- header ( 'content-type: image/png' );
-
- $im = imagecreate($x=130,$y=45 );
- $bg = imagecolorallocate($im,rand(50,200),rand(0,155),rand(0,155));
- $fontcolor = imagecolorallocate ( $im, 255, 255, 255 );
- $fontstyle = 'rock.ttf';
-
- 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,$x),0,rand(0,$x),$y,$linecolor);
- }
-
- for ($i=0;$i<250;$i++){
- imagesetpixel($im,rand(0,$x),rand(0,$y),$fontcolor);
- }
- imagepng($im);
- imagedestroy($im);
- ?>
|