码迷,mamicode.com
首页 > Web开发 > 详细

关于在thinkcmf中使用phpqrcode生成二维码

时间:2018-10-07 18:05:56      阅读:449      评论:0      收藏:0      [点我收藏+]

标签:end   类库   image   name   content   www   加载   floor   ali   

首先:下载二维码的类库   phpqrcode文件
 

然后将下载好的文件放到/simplewind/Core/Library/Vendor下

public function scerweima(){


$url=www.baidu.com ;//将url地址写好

 Vendor(‘phpqrcode.phpqrcode‘);//加载类库
 
 
$errorCorrectionLevel = ‘L‘; //容错级别
$i=320;
$j = floor($i/37*100)/100 + 0.01;
$matrixPointSize = $j; //生成图片大小

 

 
//生成二维码图片
        $filename = SITE_PATH.‘public/erweima/‘.time().rand(100,999).‘.png‘;//生成二维码的图片名称,以及保存地址
        $QRcode=new \QRcode();//实例化对象

 

$QRcode::png($url,$filename , $errorCorrectionLevel, $matrixPointSize, 2);
 
$QR = $filename; //已经生成的原始二维码图片文件

 

$QR = imagecreatefromstring(file_get_contents($QR));
 
 
return $filename;
}

关于在thinkcmf中使用phpqrcode生成二维码

标签:end   类库   image   name   content   www   加载   floor   ali   

原文地址:https://www.cnblogs.com/hzhenx/p/9750592.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!