php验证码复杂的干扰,php生成验证码 随机干扰

[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)); //第一次对 imagecolorallocate() 的调用会给基于调色板的图像填充背景色

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

$fontstyle = 'rock.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,$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);

?>

694748ed64b9390909c0d88230893790.png

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值