| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 | <?phpnamespace App\Constants;class Captcha{    private $width;    private $height;    private $codeNum;    private $code;    private $im;    //初始化    function __construct($width = 80, $height = 20, $codeNum = 4)    {        $this->width = $width;        $this->height = $height;        $this->codeNum = $codeNum;    }    //显示验证码    function showImg()    {        //创建图片        $this->createImg();        //设置干扰元素        $this->setDisturb();        //设置验证码        $this->setCaptcha();        //输出图片//        $this->outputImg();    }    //获取显示的验证码,用来验证验证码是否数据正确    function getCaptcha()    {        return $this->code;    }    //创建图片    private function createImg()    {        $this->im = imagecreatetruecolor($this->width, $this->height);        $bgColor = imagecolorallocate($this->im, 255, 255, 255);//创建的前景为白色        imagefill($this->im, 0, 0, $bgColor);    }    //设置干扰元素    private function setDisturb()    {        $area = ($this->width * $this->height) / 20;        $disturbNum = ($area > 250) ? 250 : $area;        //加入点干扰        for ($i = 0; $i < $disturbNum; $i++) {            $color = imagecolorallocate($this->im, rand(0, 255), rand(0, 255), rand(0, 255));            imagesetpixel($this->im, rand(1, $this->width - 2), rand(1, $this->height - 2), $color);        }        //加入弧线        for ($i = 0; $i <= 1; $i++) {//最多两条线            $color = imagecolorallocate($this->im, rand(128, 255), rand(125, 255), rand(100, 255));            imagearc($this->im, rand(0, $this->width), rand(0, $this->height), rand(30, 300), rand(20, 200), 50, 30, $color);        }    }    //设置验证码随机数    private function createCode()    {        $str = "23456789abcdefghijkmnpqrstuvwxyzABCDEFGHIJKMNPQRSTUVWXYZ";        $str = str_split($str);        for ($i = 0; $i < $this->codeNum; $i++) {            $this->code .= $str[rand(0, sizeof($str) - 1)];//            $this->code .= $str{rand(0, strlen($str) - 1)};        }    }    //设置验证码    private function setCaptcha()    {        //设置验证码随机数        $this->createCode();        //文字颜色        $color = imagecolorallocate($this->im, rand(50, 250), rand(100, 250), rand(128, 250));        //字体文件        $fontPath = base_path() . "/public/layuiadmin/layui/font/Monaco.ttf";        //图象资源,尺寸,角度,x轴,y轴,颜色,字体路径,文本插入图像        imagefttext($this->im, 30, 0, 10, 35, $color, $fontPath, $this->code);    }    //输出图片    private function outputImg()    {        if (imagetypes() & IMG_JPG) {//            直接向浏览器输出图片            header('Content-type:image/jpeg');            imagejpeg($this->im);        } elseif (imagetypes() & IMG_GIF) {            header('Content-type: image/gif');            imagegif($this->im);        } elseif (imagetypes() & IMG_PNG) {            header('Content-type: image/png');            imagepng($this->im);        } else {            die("Don't support image type!");        }    }    public function getBase64Image()    {        ob_start();        imagepng($this->im);        $imageData = ob_get_contents();        ob_end_clean();        $base64Image = base64_encode($imageData);        $base64Image = "data:image/png;base64," . $base64Image;        imagedestroy($this->im);        return $base64Image;    }}
 |