首页 > 编程知识 正文

一个漂亮灵活的php图片验证码,php 图片验证码

时间:2023-12-26 02:46:20 阅读:322523 作者:AEVR

本文目录一览:

求助!!在php中想实现图片验证码的效果

1.rand一个数串。

2.存入cookie中或session中。

3.将数用gd库方法生成图片。

4.用户输入后与cookie或session对比。

done

php的验证码提示怎样制作

一般制作验证码会按照下面的几步走:

一:创建出来一个图片,通常我们成为源,可以用imagecreatetruecolor()这个函数搞定

二:给这个源 添加背景色,同时设置文本显示的颜色,GD库函数为我们提供了imagecolorallocate()函数

三:材料弄好了,我们要给它添点内容了,就是我们随机生成的数字或者字母,甚至可以是它们的组合,这里我们可以选择两个函数 imagettftext()、imagesrting(),这两个函数的不同,我们会在后面讲解。

例:

?php

session_start();//开启session,用来记录获得的验证码,这个函数要写在程序的开头,不然会出现错误

header(“Content-type :image/gif”);//把文件的返回类型设为image/gif格式,这个格式可以输出图片

$codelen=4;//设置你要让用户输入字符的个数,一般为4,过长用户体验不好。

$charset =”ABCDEFGHKLMNPRSTUVWYZ23456789″;//我们可以尽量把一些难以辨认的字符去掉,比如阿拉伯数字0和字母o,这也是提高用户体验的一种方法。

$code =”;

for($i=0;$i$codelen;$i++){//用for循环得到4个随机的字符,在这里用到了mt_rand,这个函数比rand的效率要高的多,建议大家用这个

$code .=$charset{mt_rand(0,strlen($charset)-1)};

}

$_SESSION['code']=$code;//下篇关于session验证的文章将会用到

$width = 80;

$height = 40;

$im = imagecreatetruecolor($width,$height);//用imagecreatetruecolor()函数来建立一个新的图片,里面的两个数值分别是宽度和高度,这是制作验证码的第一步

$bg = imagecolorallocate($im,255,255,0); //图片背景的颜色,这里是第二步

$textcolor = imagecolorallocate($im,255,0,0);//文字的颜色

imagefill($im,0,0,$bg);//给图片填充背景色

//好了上面的铺垫任务做的差不多了,现在关键就是让字符显示在图片上,这里有两种方法我们一一介绍。

$font =”ggbi.ttf”;//如果你有字体的话 就填上字体的相对路径,如果没有就留空。下面的两个用法我会一一讲解。

if($font!==”"){

for($num=0;$num4;$num++){

imagettftext($im,mt_rand(12,16),(mt_rand(0,75)+330)%360,5+15*$num,20+mt_rand(2,5),$textcolor,$font,$code[$num]);//这里是第三步

}

}

else{

for($num=0;$num4;$num++){

imagestring($im,5,10+15*$num,10+mt_rand(0,5),$code[$num],$textcolor);

}

}

header(“Content-type: image/jpeg”);

imagejpeg($im);

?

求一个php验证码及如何使用的例子?

以前项目中的东西

在没有GB库的情况下也可以生成验证码

关键部分做出了注释

img src="image.php"

?php

//存为文件 image.php

error_reporting(E_ALL ^ E_NOTICE);

require_once('image.class.php');

$image_model = new Image();

//可以在此处更改属性达到验证码不同大小的图片

$image_model-outputBrowser();

?

?php

/*

* 验证码生成类 存为文件image.class.php

* 如果不支持GD库,则采用像素画法

* 详见

*/

class Image

{

var $img_height = 20; //图片的长

var $img_width = 68; //图片的宽

var $img_cache = ''; //图像信息缓存

var $check_number = ''; //验证码

var $lenght = 4; //验证码位数

var $is_gd = false;

//'----------以下为不支持GD需要的变量

var $pixels = '';

var $digits = '';

var $lines = '';

var $data = '';

var $chunk = '';

var $crc_table = '';

function Image()

{

session_start();

session_register("check_number");

$this-session = $_SESSION;

$this-is_gd = function_exists('gd_info') ? true : false;

$this-getCheckNumber();

if( $this-is_gd ):

$this-getFromGD();

else:

$this-getFromCode();

endif;

}

//'----浏览器输出

function outputBrowser()

{

if( $this-is_gd )

{

Header("Content-type: image/png"); //告诉浏览器,下面的数据是图片,而不要按文字显示

Imagepng($this-img_cache); //生成png格式。。。嘿嘿效果蛮像回事的嘛。。。

ImageDestroy($this-img_cache);

}

else echo($this-img_cache);

}

//'----文件输出

function outputFile($filename=null)

{

if(!$filename)$filename=time().'.png';

$fp = fopen($filename, 'w+');

fwrite($fp, $this-img_cache);

fclose($fp);

}

//'----得到验证码

function getCheckNumber()

{

//srand(microtime() * 100000);//PHP420后,srand不是必须的

for($Tmpa=0;$Tmpa$this-lenght;$Tmpa++)

{

$this-check_number.= $this-is_gd ? dechex(rand(0,15)) : rand(0,3);

}

unset($Tmpa);

$this-session['check_number'] = strtoupper($this-check_number);

}

//'----用GD库生成

function getFromGD()

{

//$black = '';

$this-img_cache = imageCreate($this-img_width,$this-img_height); //生成图片

//图片底色,ImageColorAllocate第1次定义颜色PHP就认为是底色了

$black = ImageColorAllocate($this-img_cache, 255,255,255);

//下面该生成雪花背景了,其实就是在图片上生成一些符号

//先用100个做测试

/*

for ($i=1; $i=15; $i++)

{

imageString($this-img_cache,1,mt_rand(1,$this-img_height-10),mt_rand(1,$this-img_width-10),".",

imageColorAllocate($this-img_cache,mt_rand(100,255),mt_rand(0,250),mt_rand(0,200)));

//哈,看到了吧,其实也不是雪花,就是生成*号而已。为了使它们看起来"杂乱无章、5颜6色",就得在1个1个生成它们的时候,让它们的位置、颜色,甚至大小都用随机数,rand()或mt_rand都可以完成。

}

*/

//上面生成了背景,现在就该把已经生成的随机数放上来了。道理和上面差不多,随机数1个1个地放,同时让他们的位置、大小、颜色都用成随机数~~

//为了区别于背景,这里的颜色不超过200,上面的不小于200

imagettftext($this-img_cache, 20, 0, 10, 20, $black, "./html/VINERITC.TTF", "AC67");

for ($i=0;$istrlen($this-session['check_number']);$i++)

{

imagettftext($this-img_cache, 14, rand(0,30), $i*$this-img_width/4 + 3, 17, imageColorAllocate($this-img_cache,mt_rand(0,100),mt_rand(0,150),mt_rand(0,200)), "./html/VINERITC.TTF", $this-session['check_number'][$i]);

}

for($i=0;$i100;$i++)//加入干扰象素

{

imagesetpixel($this-img_cache, rand()%70 , rand()%30 , imageColorAllocate($this-img_cache,mt_rand(100,255),mt_rand(0,250),mt_rand(0,200)));

}

$black = ImageColorAllocate($this-img_cache, 0,0,0); //定义需要的黑色

//先成一黑色的矩形把图片包围

ImageRectangle($this-img_cache,0,0, $this-img_width-1,$this-img_height-1, $black);

}

//End Function getGD

#-----------------------------------------------------------------------------------------------------------------------

function set_4pixel($r, $g, $b, $x, $y)

{

$ofs = 3 * ($this-img_width * $y + $x);

$this-pixels[$ofs] = chr($r);

$this-pixels[$ofs + 1] = chr($g);

$this-pixels[$ofs + 2] = chr($b);

$this-pixels[$ofs + 3] = chr($r);

$this-pixels[$ofs + 4] = chr($g);

$this-pixels[$ofs + 5] = chr($b);

$ofs += 3 * $this-img_width;

$this-pixels[$ofs] = chr($r);

$this-pixels[$ofs + 1] = chr($g);

$this-pixels[$ofs + 2] = chr($b);

$this-pixels[$ofs + 3] = chr($r);

$this-pixels[$ofs + 4] = chr($g);

$this-pixels[$ofs + 5] = chr($b);

}

//生成数字图象的函数

function draw2digits($x, $y, $number)

{

//$this-draw_digit($x, $y, intval($number / 10) );

$this-draw_digit($x + 11, $y, $number % 10);

}

function draw_digit($x, $y, $digit)

{

$digit = $this-digits[$digit];

$m = 8;

for($b = 1, $i = 0; $i 7; $i++, $b *= 2)

{

if(($b $digit) == $b)

{

$j = $i * 4;

$x0 = $this-lines[$j] * $m + $x;

$y0 = $this-lines[$j + 1] * $m + $y;

$x1 = $this-lines[$j + 2] * $m + $x;

$y1 = $this-lines[$j + 3] * $m + $y;

if($x0 == $x1)

{

$ofs = 3 * ($this-img_width * $y0 + $x0);

for($h = $y0; $h = $y1; $h++, $ofs += 3 * $this-img_width)

{

$this-pixels[$ofs] = chr(0);

$this-pixels[$ofs + 1] = chr(0);

$this-pixels[$ofs + 2] = chr(0);

}

}

else

{

$ofs = 3 * ($this-img_width * $y0 + $x0);

for($w = $x0; $w = $x1; $w++)

{

$this-pixels[$ofs++] = chr(0);

$this-pixels[$ofs++] = chr(0);

$this-pixels[$ofs++] = chr(0);

}

}

}//End if

}//End for

}

//将文字加入到图象中

function add_chunk($type)

{

// chunk :为层

// length: 4 字节: 用来计算 chunk

// chunk type: 4 字节

// chunk data: length bytes

// CRC: 4 字节: 循环冗余码校验

// copy data and create CRC checksum

$len = strlen($this-data);

$this-chunk = pack("c*", ($len 24) 255,

($len 16) 255,

($len 8) 255,

$len 255);

$this-chunk .= $type;

$this-chunk .= $this-data;

//calculate a CRC checksum with the bytes chunk[4..len-1]

$z = 16777215;

$z |= 255 24;

$c = $z;

for ($n = 4; $n strlen($this-chunk); $n++) {

$c8 = ($c 8) 0xffffff;

$c = $this-crc_table[($c ^ ord($this-chunk[$n])) 0xff] ^ $c8;

}

$crc = $c ^ $z;

$this-chunk .= chr(($crc 24) 255);

$this-chunk .= chr(($crc 16) 255);

$this-chunk .= chr(($crc 8) 255);

$this-chunk .= chr($crc 255);

//将结果加到$img_cache中

$this-img_cache .= $this-chunk;

}

//主程序

function getFromCode()

{

//填充

for($h = 0; $h $this-img_height; $h++)

{

for($w = 0; $w $this-img_width; $w++)

{

$r = 100 / $this-img_width * $w + 155;

$g = 100 / $this-img_height * $h + 155;

$b = 255 - (100 / ($this-img_width + $this-img_height) * ($w + $h));

$this-pixels .= chr($r);

$this-pixels .= chr($g);

$this-pixels .= chr($b);

}

}

$this-digits = array(95, 5, 118, 117, 45, 121, 123, 69, 127, 125);

$this-lines = array(1, 1, 1, 2, 0, 1, 0, 2, 1, 0, 1, 1, 0, 0, 0, 1, 0, 2, 1, 2, 0, 1, 1, 1, 0, 0, 1, 0);

for($i=0; $i$this-lenght; $i++)

{

$this-draw2digits($i*13, 2, $this-check_number[$i]);

}

//$this-set_4pixel(0, 0, 0, 26, 7);

//$this-set_4pixel(0, 0, 0, 26, 13);

//$this-set_4pixel(0, 0, 0, 52, 7);

//$this-set_4pixel(0, 0, 0, 52, 13);

//创建循环冗余码校验表

$z = -306674912;// = 0xedb88320

for ($n = 0; $n 256; $n++)

{

$c = $n;

for ($k = 0; $k 8; $k++)

{

$c2 = ($c 1) 0x7fffffff;

if($c 1) $c = $z ^ ($c2);

else $c = $c2;

}

$this-crc_table[$n] = $c;

}

// PNG file signature

$this-img_cache = pack("c*", 137,80,78,71,13,10,26,10);

// IHDR chunk data:

// width: 4 bytes

// height: 4 bytes

// bit depth: 1 byte (8 bits per RGB value)

// color type: 1 byte (2 = RGB)

// compression method: 1 byte (0 = deflate/inflate)

// filter method: 1 byte (0 = adaptive filtering)

// interlace method: 1 byte (0 = no interlace)

$this-data = pack("c*", ($this-img_width24) 255,

($this-img_width 16) 255,

($this-img_width 8) 255,

$this-img_width 255,

($this-img_height 24) 255,

($this-img_height 16) 255,

($this-img_height 8) 255,

$this-img_height 255, 8, 2, 0, 0, 0);

$this-add_chunk("IHDR");

//以下不敢乱翻译,请自行参考

// scanline:

// filter byte: 0 = none

// RGB bytes for the line

// the scanline is compressed with "zlib", method 8 (RFC-1950):

// compression method/flags code: 1 byte ($78 = method 8, 32k window)

// additional flags/check bits: 1 byte ($01: FCHECK = 1, FDICT = 0, FLEVEL = 0)

// compressed data blocks: n bytes

// one block (RFC-1951):

// bit 0: BFINAL: 1 for the last block

// bit 1 and 2: BTYPE: 0 for no compression

// next 2 bytes: LEN (LSB first)

// next 2 bytes: one's complement of LEN

// LEN bytes uncompressed data

// check value: 4 bytes (Adler-32 checksum of the uncompressed data)

$len = ($this-img_width * 3 + 1) * $this-img_height;

$this-data = pack("c*", 0x78, 0x01, 1, $len 255, ($len8) 255, 255 - ($len 255), 255 - (($len 8) 255) );

$start = strlen($this-data);

$i2 = 0;

for($h = 0; $h $this-img_height; $h++)

{

$this-data .= chr(0);

for($w = 0; $w $this-img_width * 3; $w++)

{

$this-data .= $this-pixels[$i2++];

}

}

//calculate a Adler32 checksum with the bytes data[start..len-1]

$s1 = 1;

$s2 = 0;

for ($n = $start; $n strlen($this-data); $n++)

{

$s1 = ($s1 + ord($this-data[$n])) % 65521;

$s2 = ($s2 + $s1) % 65521;

}

$adler = ($s2 16) | $s1;

$this-data .= chr(($adler 24) 255);

$this-data .= chr(($adler 16) 255);

$this-data .= chr(($adler 8) 255);

$this-data .= chr($adler 255);

$this-add_chunk("IDAT");

//IEND: marks the end of the PNG-file

$this-data = "";

$this-add_chunk("IEND");

//列印图象

//echo($this-img_cache);

}

}//End Class

?

php图片验证码实现

可以用php的GD库做

//随机生成验证码

class randomString

{

function createRandomStr($strLen)

{

list($usec, $sec) = explode(' ', microtime());

(float) $sec + ((float) $usec * 100000);

$number = '';

$number_len = $strLen;

$stuff = '1234567890abcdefghijklmnopqrstuvwxyz';//附加码显示范围ABCDEFGHIJKLMNOPQRSTUVWXYZ

$stuff_len = strlen($stuff) - 1;

for ($i = 0; $i $number_len; $i++) {

$number .= substr($stuff, mt_rand(0, $stuff_len), 1);

}

return $number;

}

}

通过ZD库将验证码变成图片

$number = $createStr-createRandomStr('4');//验证码的位数

$number_len = strlen($number);

$_SESSION["VERIFY_CODE"] = $number;

// 生成验证码图片

$img_width = 60;

$img_height = 20;

$img = imageCreate($img_width, $img_height);

ImageColorAllocate($img, 0x6C, 0x74, 0x70);

$white = ImageColorAllocate($img, 0xff, 0xff, 0xff);

$ix = 6;

$iy = 2;

for ($i = 0; $i $number_len; $i++) {

imageString($img, 5, $ix, $iy, $number[$i], $white);

$ix += 14;

}

for($i=0;$i200;$i++) //加入干扰象素

{

$randcolor = ImageColorallocate($img,rand(0,255),rand(0,255),rand(0,255));

imagesetpixel($img, rand()%100 , rand()%50 , $randcolor);

}

// 输出图片

header("Content-type: " . image_type_to_mime_type(IMAGETYPE_PNG));

imagepng($img);

imagedestroy($img);

UNIX系统下如何实现PHP图片验证码?(200分)

UNIX和Windows生成验证码的方式基本上是一样的,会影响实现方式的主要是PHP和GD的版本,所以如果条件允许的话,最好安装最新版本的,否则,一些函数会出现不能够支持的现象。

以下是一些实现的思路,供你参考:

在这个基础上,还可以做很多变化,以抵抗OCR。

调用页面:file1.php

?php

session_start();

echo $_SESSION['validcode']; //这个就是上次发送的验证码

?

img src="create.php" border="1" /

生成页面,可以把它看作一个图片文件:file2.php

?php

session_start();

Header("content-type: image/png");

srand((double)microtime()*1000000);

$randval = substr(rand(), 0,4);

$font = 4;

$im = imagecreate(46,16);

$background_color = ImageColorAllocate($im,255,255,255);

$foreground_color = ImageColorAllocate($im,0,0,0);

imagefill($im,0,0,$background_color);

$px = (imagesx($im)-8.3*strlen($randval))/2;

ImageString($im,$font,1,1,$randval,$foreground_color);

Imagepng($im);

ImageDestroy($im);

$_SESSION['validcode'] = $randval; //把它保存在会话里, 用来验证

?

UNIX下GD的安装,只要在编译PHP时加入 --with-gd[=DIR] 就可以了。

详细的安装方法可以参考:

php的图片验证码代码

这个是phpcms的验证码,经过十几万个网站经验的,非常好用

?php

session_start();

$enablegd = 1;

//判断图像处理函数是否存在

$funcs = array('imagecreatetruecolor','imagecolorallocate','imagefill','imagestring','imageline','imagerotate','imagedestroy','imagecolorallocatealpha','imageellipse','imagepng');

foreach($funcs as $func)

{

if(!function_exists($func))

{

$enablegd = 0;

break;

}

}

ob_clean(); //清理缓冲

if($enablegd)

{

//create captcha

$consts = 'cdfgkmnpqrstwxyz23456';

$vowels = 'aek23456789';

for ($x = 0; $x 6; $x++)

{

$const[$x] = substr($consts, mt_rand(0,strlen($consts)-1),1); //获取$consts中的一个随机数

$vow[$x] = substr($vowels, mt_rand(0,strlen($vowels)-1),1); //获取$vowels中的一个随机数

}

$radomstring = $const[0] . $vow[0] .$const[2] . $const[1] . $vow[1] . $const[3] . $vow[3] . $const[4];

$_SESSION['checkcode'] = $string = substr($radomstring,0,4); //显示4个字符

$imageX = strlen($radomstring)*8; //图像的宽

$imageY = 20; //图像的高

$im = imagecreatetruecolor($imageX,$imageY); //新建一个真彩色图像

//creates two variables to store color

$background = imagecolorallocate($im, rand(180, 250), rand(180, 250), rand(180, 250)); //背景色

$foregroundArr = array(imagecolorallocate($im, rand(0, 20), rand(0, 20), rand(0, 20)),

imagecolorallocate($im, rand(0, 20), rand(0, 10), rand(245, 255)),

imagecolorallocate($im, rand(245, 255), rand(0, 20), rand(0, 10)),

imagecolorallocate($im, rand(245, 255), rand(0, 20), rand(245, 255))

);

$foreground2 = imagecolorallocatealpha($im, rand(20, 100), rand(20, 100), rand(20, 100),80); //分配颜色并说明透明度

$middleground = imagecolorallocate($im, rand(200, 160), rand(200, 160), rand(200, 160)); //中间背景

$middleground2 = imagecolorallocatealpha($im, rand(180, 140), rand(180, 140), rand(180, 140),80); //中间背景2

//与左上角的颜色相同的都会被填充

imagefill($im, 0, 0, imagecolorallocate($im, 250, 253, 254));

//往图像上写入文字

imagettftext($im, 12, rand(30, -30), 5, rand(14, 16), $foregroundArr[rand(0,3)], XINCHENG_ROOT.'include/fonts/ALGER.TTF', $string[0]);

imagettftext($im, 12, rand(50, -50), 20, rand(14, 16), $foregroundArr[rand(0,3)], XINCHENG_ROOT.'include/fonts/ARIALNI.TTF', $string[1]);

imagettftext($im, 12, rand(50, -50), 35, rand(14, 16), $foregroundArr[rand(0,3)], XINCHENG_ROOT.'include/fonts/ALGER.TTF', $string[2]);

imagettftext($im, 12, rand(30, -30), 50, rand(14, 16), $foregroundArr[rand(0,3)], XINCHENG_ROOT.'include/fonts/arial.ttf', $string[3]);

//画边框

$border = imagecolorallocate($im, 133, 153, 193);

imagerectangle($im, 0, 0, $imageX - 1, $imageY - 1, $border);

//画一些随机出现的点

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

for ($i=0;$i80;$i++)

{

imagesetpixel($im,rand(2,$imageX-2),rand(2,$imageX-2),$pointcol);

}

//画随机出现的线

for ($x=0; $x9;$x++)

{

if(mt_rand(0,$x)%2==0)

{

imageline($im, rand(0, 120), rand(0, 120), rand(0, 120), rand(0, 120), rand(0, 999999)); //画线

imageellipse($im, rand(0, 120), rand(0, 120), rand(0, 120), rand(0, 120), $middleground2); //画椭圆

}

else

{

imageline($im, rand(0, 120), rand(0, 120), rand(0, 120), rand(0, 120), rand(0, 999999));

imageellipse($im, rand(0, 120), rand(0, 120), rand(0, 120), rand(0, 120), $middleground);

}

}

//output to browser

header("content-type:image/pngrn");

imagepng($im);

imagedestroy($im);

}

else

{

$files = glob(XINCHENG_ROOT.'images/checkcode/*.jpg');

if(!is_array($files)) die('请检查文件目录完整性:/images/checkcode/');

$checkcodefile = $files[rand(0, count($files)-1)]; //随机其中一个文件

$_SESSION['checkcode'] = substr(basename($checkcodefile), 0, 4); //获得文件名

header("content-type:image/jpegrn");

include $checkcodefile;

}

?

版权声明:该文观点仅代表作者本人。处理文章:请发送邮件至 三1五14八八95#扣扣.com 举报,一经查实,本站将立刻删除。