免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1330 | 回复: 0
打印 上一主题 下一主题

php验证码封装类一例 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-07-02 14:13 |只看该作者 |倒序浏览
一个实现验证码的封装类,实现的功能强大而实用。
验证码类,validationcode.class.php

  1. <?php
  2. /**
  3. * 验证码类
  4. * edit www.jbxue.com
  5. */
  6. class ValidationCode {
  7. private $width;
  8. private $height;
  9. private $codeNum;
  10. private $image; //图像资源
  11. private $disturbColorNum;
  12. private $checkCode;
  13. function __construct($width=80, $height=20, $codeNum=4){
  14. $this->width=$width;
  15. $this->height=$height;
  16. $this->codeNum=$codeNum;
  17. $this->checkCode=$this->createCheckCode();
  18. $number=floor($width*$height/15);

  19. if($number > 240-$codeNum){
  20. $this->disturbColorNum= 240-$codeNum;
  21. }else{
  22. $this->disturbColorNum=$number;
  23. }

  24. }
  25. //通过访问该方法向浏览器中输出图像
  26. function showImage($fontFace=""){
  27. //第一步:创建图像背景
  28. $this->createImage();
  29. //第二步:设置干扰元素
  30. $this->setDisturbColor();
  31. //第三步:向图像中随机画出文本
  32. $this->outputText($fontFace);
  33. //第四步:输出图像
  34. $this->outputImage();
  35. }

  36. //通过调用该方法获取随机创建的验证码字符串
  37. function getCheckCode(){
  38. return $this->checkCode;
  39. }
  40. private function createImage(){
  41. //创建图像资源 //www.jbxue.com
  42. $this->image=imagecreatetruecolor($this->width, $this->height);
  43. //随机背景色
  44. $backColor=imagecolorallocate($this->image, rand(225, 255), rand(225,255), rand(225, 255));
  45. //为背景添充颜色
  46. imagefill($this->image, 0, 0, $backColor);
  47. //设置边框颜色
  48. $border=imagecolorallocate($this->image, 0, 0, 0);
  49. //画出矩形边框
  50. imagerectangle($this->image, 0, 0, $this->width-1, $this->height-1, $border);
  51. }
  52. private function setDisturbColor(){
  53. for($i=0; $i<$this->disturbColorNum; $i++){
  54. $color=imagecolorallocate($this->image, rand(0, 255), rand(0, 255), rand(0, 255));
  55. imagesetpixel($this->image, rand(1, $this->width-2), rand(1, $this->height-2), $color);
  56. }
  57. for($i=0; $i<10; $i++){
  58. $color=imagecolorallocate($this->image, rand(200, 255), rand(200, 255), rand(200, 255));
  59. imagearc($this->image, rand(-10, $this->width), rand(-10, $this->height), rand(30, 300), rand(20, 200), 55, 44, $color);
  60. }
  61. }
  62. private function createCheckCode(){
  63. //这里主要产生随机码,从2开始是为了区分1和l
  64. $code="23456789abcdefghijkmnpqrstuvwxyzABCDEFGHIJKMNPQRSTUVWXYZ";
  65. $string='';
  66. for($i=0; $i < $this->codeNum; $i++){
  67. $char=$code{rand(0, strlen($code)-1)};
  68. $string.=$char;
  69. }
  70. return $string;
  71. }
  72. private function outputText($fontFace=""){
  73. for($i=0; $i<$this->codeNum; $i++){
  74. $fontcolor=imagecolorallocate($this->image, rand(0, 128), rand(0, 128), rand(0, 128));
  75. if($fontFace==""){
  76. $fontsize=rand(3, 5);
  77. $x=floor($this->width/$this->codeNum)*$i+3;
  78. $y=rand(0, $this->height-15);
  79. imagechar($this->image,$fontsize, $x, $y, $this->checkCode{$i},$fontcolor);
  80. }else{
  81. $fontsize=rand(12, 16);
  82. $x=floor(($this->width-8)/$this->codeNum)*$i+8;
  83. $y=rand($fontSize+5, $this->height);
  84. imagettftext($this->image,$fontsize,rand(-30, 30),$x,$y ,$fontcolor, $fontFace, $this->checkCode{$i});
  85. }
  86. }
  87. }

  88. //输出图象信息
  89. private function outputImage() {
  90. if(imagetypes() & IMG_GIF){
  91. header("Content-Type:image/gif");
  92. imagepng($this->image);
  93. }else if(imagetypes() & IMG_JPG){
  94. header("Content-Type:image/jpeg");
  95. imagepng($this->image); //www.jbxue.com
  96. }else if(imagetypes() & IMG_PNG){
  97. header("Content-Type:image/png");
  98. imagepng($this->image);
  99. }else if(imagetypes() & IMG_WBMP){
  100. header("Content-Type:image/vnd.wap.wbmp");
  101. imagepng($this->image);
  102. }else{
  103. die("PHP不支持图像创建");
  104. }
  105. }
  106. function __destruct(){
  107. imagedestroy($this->image);
  108. }
  109. }
  110. ?>
复制代码
本文原始链接:http://www.jbxue.com/article/9678.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP