verifycode_gd() static public method

生成验证码使用GD
static public verifycode_gd ( $img_width = 80, $img_height = 30 ) : array
$img_width
$img_height
return array
Ejemplo n.º 1
0
 function vcode()
 {
     $this->session->start();
     $this->http->header('Content-Type', 'image/jpeg');
     Swoole\Image::verifycode_gd();
 }
Ejemplo n.º 2
0
 function verify()
 {
     session();
     $this->swoole->http->header('Content-Type', 'image/png');
     Swoole\Image::verifycode_gd();
 }