thinkphp中没有二维码相关的库,因此我们可以通过整合phpqrcode来完成生成二维码的功能。
下载phpqrcode整合到thinkphp框架在“thinkphp\library\vendor\”下新建目录phpqrcode,将压缩包内容解压到该文件夹下。
调用phpqrcode生成二维码在indexcontroller控制器下添加如下方法:
public function qrcode($url="www.baidu.com",$level=3,$size=4)
{
vendor('phpqrcode.phpqrcode');
$errorcorrectionlevel =intval($level) ;//容错级别
$matrixpointsize = intval($size);//生成图片大小
//生成二维码图片
$object = new \qrcode();
$object->png($url, false, $errorcorrectionlevel, $matrixpointsize, 2);
}
访问:127.0.0.1/index/qrcode即可看到生成的二维码。
生成带logo的二维码先调用phpqrcode生成一张二维码,再使用php的image相关函数将logo图片添加到生成的二维码图片上。
include 'phpqrcode.php';
$value = 'http://www.cnblogs.com/txw1958/';
//二维码内容
$errorcorrectionlevel = 'l';//容错级别
$matrixpointsize = 6;//生成图片大小 //生成二维码图片
qrcode::png($value, 'qrcode.png', $errorcorrectionlevel, $matrixpointsize, 2);
$logo = 'logo.png';//准备好的logo图片
$qr = 'qrcode.png';//已经生成的原始二维码图
if ($logo !== false) {
$qr = imagecreatefromstring(file_get_contents($qr));
$logo = imagecreatefromstring(file_get_contents($logo));
$qr_width = imagesx($qr);//二维码图片宽度
$qr_height = imagesy($qr);//二维码图片高度
$logo_width = imagesx($logo);//logo图片宽度
$logo_height = imagesy($logo);//logo图片高度
$logo_qr_width = $qr_width / 5;
$scale = $logo_width/$logo_qr_width;
$logo_qr_height = $logo_height/$scale;
$from_width = ($qr_width - $logo_qr_width) / 2;
//重新组合图片并调整大小
imagecopyresampled($qr, $logo, $from_width, $from_width, 0, 0, $logo_qr_width,
$logo_qr_height, $logo_width, $logo_height);
}
//输出图片 imagepng($qr, 'helloweixin.png');
echo '<img src="helloweixin.png">';
相关文章:
如何获取thinkphp3.2.3 上传文件路径
thinkphp3.2.3整合phpqrcode生成二维码的示例代码分享
php 实现页面无刷新上传文件
使用html5实现异步上传文件,支持跨域,带有上传进度条
以上就是thinkphp3.2.3整合phpqrcode生成二维码的示例代码分享的详细内容。