ThinkPHP中没有二维码相关的库,因此我们可以通过整合PHPqrcode来完成生成二维码的功能。
下载PHPqrcode
下载地址:htPHPqrcode.sourceforge.net/
整合到ThinkPHP框架
在“ThinkPHP\Library\Vendor\”下新建目录PHPqrcode,将压缩包内容解压到该文件夹下。
调用PHPqrcode生成二维码
访问:生成的二维码。
生成带logo的二维码
先调用PHPqrcode生成一张二维码,再使用PHP的image相关函数将logo图片添加到生成的二维码图片上。
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,$logo_qr_width,$logo_qr_height,$logo_width,$logo_height);
}
//输出图片
imagepng($QR,'helloweixin.png');
echo '<img src="helloweixin.png">';