verifycode_chinese() 정적인 공개 메소드

生成汉字验证码
static public verifycode_chinese ( $font, $width = 180, $height = 60 ) : array
$font
$width
$height
리턴 array
예제 #1
0
 function vcode()
 {
     $this->session->start();
     $this->http->header('Content-Type', 'image/jpeg');
     $verifyCode = Swoole\Image::verifycode_chinese('/usr/share/fonts/truetype/wqy/wqy-microhei.ttc');
     //        debug($verifyCode);
     //        $verifyCode = Swoole\Image::verifycode_gd();
     //        $verifyCode = Swoole\Image::verifycode_imagick();
     $_SESSION['vcode'] = $verifyCode['code'];
     return $verifyCode['image'];
 }