php生成图片验证码

2014-07-25 02:06:25 -0400
<?php
session_start();
header('Content-type: image/png');
$x=130;$y=45;
$im=imagecreate($x,$y);//创建图片
$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\文件夹下找到,我把它放到和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;
}
//产生干扰线
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);
}
//生成png图片
imagepng($im);
//释放内存
imagedestroy($im);
«Newer      Older»

Back to home

Subscribe | Register | Login | N