登录  /  注册

使用PHP生成带有干扰线的验证码,干扰点、字符倾斜详细类代码

王林
发布: 2019-08-21 09:40:59
转载
3020人浏览过

php生成验证码的类代码,本验证码类支持生成干扰点、干扰线等干扰像素,还可以使字符倾斜。在类中你可以定义验证码宽度、高度、长度、倾斜角度等参数,后附有详细用法:

<?php    
    class class_authcode{    
        public  $authcode   = &#39;&#39;; //验证码    
        private $width      = &#39;&#39;; //验证码图片宽    
        private $height     = &#39;&#39;; //验证码图片高    
        private $len        = &#39;&#39;; //验证码长度    
        private $tilt       = array(-30,30);//验证码倾斜角度    
        private $font       = &#39;AlteHaasGroteskBold.ttf&#39;;//字体文件    
        private $str        = &#39;&#39;; //验证码基    
        private $im         = &#39;&#39;; //生成图片的句柄    
        //构造函数    
        function __construct($width=100,$heigh=30,$len=4) {    
            $this->width    = $width;    
            $this->height   = $heigh;    
            $this->len      = $len;    
            $this->str      = &#39;ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz&#39;;    
            $str_len = strlen($this->str)-1;    
            for ($i=0; $i<$len; $i++) {    
                $this->authcode .= $this->str[rand(0,$str_len)];    
            }    
        }    
        //生成验证码图片    
        private function imagecreate(){    
            $this->im = imagecreatetruecolor($this->width,$this->height);    
        }    
        //干扰颜色    
        private function ext_color() {    
            return imagecolorallocate($this->im,rand(50, 180),rand(50, 180),rand(50, 180));    
        }    
        //生成干扰点    
        private function ext_point() {    
            for ($i=0; $i<$this->width*2; $i++) {    
                imagesetpixel($this->im,rand(1,$this->width-1),rand(1,$this->height-1),$this->ext_color());    
            }    
        }
         //生成干扰线    
                private function ext_line() {    
                    for ($i=0; $i<$this->len; $i++) {    
                        $x1 = rand(1,$this->width-1);    
                        $y1 = rand(1,$this->height-1);    
                        $x2 = rand(1,$this->width-1);    
                        $y2 = rand(1,$this->height-1);    
                        imageline($this->im,$x1,$y1,$x2,$y2,$this->ext_color());    
                    }    
                }
                //把验证码写入图片(不能和$this->imgstrfloat()同时使用)    
                private function imgstr() {    
                    $old_x = 1;    
                    for ($i=0; $i<$this->len; $i++) {    
                        $fontsize = rand(2,5);      //字体大小    
                        $tmp_1 = $fontsize*2.5;    
                        $tmp_2 = $i>0  $tmp_1 : 0;    
                        $y = rand(1,$this->height/2);    
                        $x = rand($old_x+$tmp_2, ($i+1)*($this->width)/$this->len-$tmp_1);    
                        $old_x = $x;    
                        $color = imagecolorallocate($this->im,rand(200, 255),rand(200, 255),rand(200, 255));    
                        imagestring($this->im,$fontsize,$x,$y,$this->authcode[$i],$color);    
                    }    
                }
                //把验证码倾斜写入图片(注意这里不能和$this->imgstr()方法同时使用)    
                 private function imgstrfloat() {    
                    $old_x = 1;    
                    for ($i=0; $i<$this->len; $i++) {    
                        $fontfloat = rand($this->tilt[0],$this->tilt[1]);    
                        $fontsize = rand(10,15);        //字体大小    
                        $tmp_1 = $i>0  $fontsize : 0;    
                        $y = rand($fontsize+2, $this->height-2);    
                        $x = rand($old_x+$tmp_1+2, ($i+1)*($this->width)/$this->len-$fontsize-2);    
                        $old_x = $x;    
                        $color = imagecolorallocate($this->im, rand(200, 255), rand(200, 255), rand(200, 255));    
                        imagettftext($this->im, $fontsize, $fontfloat, $x, $y, $color, $this->font, $this->authcode[$i]);    
                    }    
                } 
                //输出验证码图片    
                function output() {    
                    $this->imagecreate();    
                    $this->imgstr();    
                    //$this->imgstrfloat();    
                    $this->ext_point();    
                    $this->ext_line();    
                    header(&#39;content-type:image/png&#39;);    
                    imagepng($this->im);    
                    imagedestroy($this->im);    
                }    
            }    
?>
登录后复制

本验证码用法说明:

$obj = new class_authcode();//实例化对象,并设置验证码图片的宽、高和验证码的长度    
$obj->$authcode; //获取验证码    
$obj->output(); //输出验证码图片
登录后复制

以上就是PHP生成验证码的类代码,不足之处请指出。

更多相关PHP问题请访问PHP中文网:https://www.php.cn/

以上就是使用PHP生成带有干扰线的验证码,干扰点、字符倾斜详细类代码的详细内容,更多请关注php中文网其它相关文章!

智能AI问答
PHP中文网智能助手能迅速回答你的编程问题,提供实时的代码和解决方案,帮助你解决各种难题。不仅如此,它还能提供编程资源和学习指导,帮助你快速提升编程技能。无论你是初学者还是专业人士,AI智能助手都能成为你的可靠助手,助力你在编程领域取得更大的成就。
来源:源码爱好者网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
关于CSS思维导图的课件在哪? 课件
凡人来自于2024-04-16 10:10:18
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2024 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号