shaerzzr 发表于 2018-12-14 12:16:22

使用php设计简单验证码

2017,1,3,星期二

  一、所需的代码,步骤:

  1.新建画布[新建图像]
      resource imagecreatetruecolor ( int $width , int $height );
      2.选取颜色
      int imagecolorallocatealpha ( resource $image , int $red , int $green , int $blue , int $alpha );
  3.画图
      bool imageellipse ( resource $image , int $cx , int $cy , int $width , int $height , int $color )
      4.区域填充

      bool imagefill( resource $image   , int $x   , int $y   , int $color );
      5.生成随机数
      int mt_rand( int $min, int $max );
      6.随机打乱一个字符串
      string str_shuffle( string $str );
      7.用 TrueType 字体向图像写入文本
      array imagettftext ( resource $image , float $size , float $angle, int $x, int $y , int $color , string $fontfile, string $text);
  8.返回字符串的子串
      string substr ( string $string, int $start[, int $length] )
      9.发送原生 HTTP 头
      void header ( string $string [, bool $replace = true [, int $http_response_code ]] );
      10.以 PNG 格式将图像输出到浏览器或文件
      bool imagepng ( resource $image [, string $filename ] );
      11.销毁一图像
      bool imagedestroy( resource $image );



页: [1]
查看完整版本: 使用php设计简单验证码