第一种方式找网上的api接口
比如:联图
品味二维码:
草料:
其他都能够在网上搜到很多,可是这些api能够大概过一段时辰会收效,
品牌SEO优化,之前就碰到过如许的情况,这就接口不行控性太大,以是我们要先容第二种方式
二、用插件生成二维码
这里应用的是PHPQRcode 新建函数(这里用的thinkPhp框架)
/**
* 生成二维码
* @param $save_path 二维码保留门路
* @param string $qr_data 手机扫描后要跳转的网址
* @param string $qr_level 默许纠错比例 分为L、M、Q、H四个品级,H代表最高纠错才能
* @param int $qr_size 二维码图巨细,1-10可选,数字越大图片尺寸越大
* @param string $save_prefix 图片称号前缀
* @return bool|string
*/
function createQRcode($save_path, $qr_data = 'PHP QR Code :)', $qr_level = 'L', $qr_size = 4, $save_prefix = 'qrcode') {
if (!isset($save_path)) return '';
//设置生成png图片的门路
$PNG_TEMP_DIR = & $save_path;
//导入二维码核心法式
vendor('PHPQRcode.class#phpqrcode'); //PHPQRcode是文件夹名字,class#phpqrcode就代表class.phpqrcode.php文件名
//检测并创立生成文件夹
if (!file_exists($PNG_TEMP_DIR)) {
mkdir($PNG_TEMP_DIR);
}
$filename = $PNG_TEMP_DIR . 'test.png';
$errorCorrectionLevel = 'L';
if (isset($qr_level) && in_array($qr_level, array('L', 'M', 'Q', 'H'))) {
$errorCorrectionLevel = & $qr_level;
}
$matrixPointSize = 4;
if (isset($qr_size)) {
$matrixPointSize = & min(max((int)$qr_size, 1), 10);
}
if (isset($qr_data)) {
if (trim($qr_data) == '') {
die('data cannot be empty!');
}
//生成文件名 文件门路+图片名字前缀+md5(称号)+.png
$filename = $PNG_TEMP_DIR . $save_prefix . md5($qr_data . '|' . $errorCorrectionLevel . '|' . $matrixPointSize) . '.png';
//起头生成
QRcode::png($qr_data, $filename, $errorCorrectionLevel, $matrixPointSize, 2);
} else {
//默许生成
QRcode::png('PHP QR Code :)', $filename, $errorCorrectionLevel, $matrixPointSize, 2);
}
if (file_exists($PNG_TEMP_DIR . basename($filename))) {
return basename($filename);
} else {
return FALSE;
}
}
函数调用
$save_path = 'Qrcode/'; //图片存储的相对门路
$qr_data = C('PROTOCOL') . $_SERVER['SERVER_NAME'] . . '/Share/member.html?str=' . $member['mstr'];
$qr_level = 'H';
$qr_size = '10';
$save_prefix = 'ZETA';
$filename = createQRcode($save_path, $qr_data, $qr_level, $qr_size, $save_prefix);
if ($filename) {
$pic = . '/' . $save_path . $filename;
}
$this->pic = $pic;
如安在应用PHPQRcode生成的二维码两头加上logo图片呢
$logo = . $member['picture']; //logo的图片地点
import("Org.Util.File");
$file = new \File($logo);
$logo = $file->getRealFile();
$file = new \File($pic);
$QR = $file->getRealFile();; //二维码图片地点
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_height = imagesy($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, $save_path . $filename); //跟logo归并以后的地点