>  기사  >  백엔드 개발  >  PHP에서 인증 코드 이미지를 생성하는 방법

PHP에서 인증 코드 이미지를 생성하는 방법

autoload
autoload원래의
2021-03-17 17:46:422876검색

1.获取生成验证码字体:

                                在php文件路径新建一个fonts文件夹,里面有字体文件。

     //判定字体资源
      if(empty($fonts))
         $fonts="arial.ttf";

      //确认字体路径
      $fonts=__DIR__."/fonts/".$fonts;
      $fonts=str_replace("/","\\",$fonts);

2.制作画布,随机分配背景色

$img=imagecreatetruecolor($width,$height);
      
$bg_color=imagecolordeallocate($img,mt_rand(200,255),mt_rand(200,250));
imagefilter($img,0,0,$bg_color);

3.增加干扰点、线

//增加干扰点:*
      for($i = 0;$i < 50;$i++)
      {
      //随机颜色
       $dots_color = imagecolorallocate($img, mt_rand(140,190), mt_rand(140,190), mt_rand(140,190));
      //使用*号作为干扰点
       imagestring($img, mt_rand(1,5), mt_rand(0,$width), mt_rand(0,$height), &#39;*&#39;, $dots_color);
      }
     //增加干扰线
     for($j = 0;$j < 10;$j++)
     {
      //随机线段颜色
      $line_color = imagecolorallocate($img, mt_rand(80,130), mt_rand(80,130), mt_rand(80,130));
      //随机线段
      imageline($img,mt_rand(0,$width),mt_rand(0,$height),mt_rand(0,$width),mt_rand(0,$height),$line_color);
     }

4.将验证码放入图片

 $captcha=array(3,4,&#39;a&#39;,&#39;i&#39;);//可以自己使用写一个方法生成数组;
 $length=sizeof($captcha);
   for($i = 0;$i < $length;$i++){
   //给每个字符分配不同颜色
   $c_color = imagecolorallocate($img, mt_rand(0,60), mt_rand(0,60), mt_rand(0,60));
   
   //增加字体空间、大小、角度显示
imagettftext($img,mt_rand(15,25),mt_rand(-45,45),$width/($length+1)*($i+1),mt_rand(25,$height-25),$c_color,$fonts,$captcha[$i]);
  }

5.保存图片

imagejpeg($img,"test.jpg",100);

推荐:php视频教程 php教程

위 내용은 PHP에서 인증 코드 이미지를 생성하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.