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

【转载】phpqrcode生成二维码的3种类型步骤

时间:2018-03-15 21:03:03      阅读:321      评论:0      收藏:0      [点我收藏+]

标签:下载地址   log   res   contents   qrcode   cts   size   evel   二维码   

<?php
// ==============php phpqrcode 生成二维码========================
// 下载地址:http://sourceforge.net/projects/phpqrcode/files/latest/download
// 只需要包含 phpqrcode.php 文件就可以。

// 一:直接输出
include "phpqrcode.php";
$value="http://www.top789.cn";
$errorCorrectionLevel = "L"; // 纠错级别:L、M、Q、H
$matrixPointSize = "4"; // 点的大小:1到10
QRcode::png($value, false, $errorCorrectionLevel, $matrixPointSize);


// 二:图片文件输出
include(‘phpqrcode.php‘);
$data = ‘http://www.top789.cn‘;
$filename = ‘test.png‘; // 生成的文件名
$errorCorrectionLevel = ‘L‘; // 纠错级别:L、M、Q、H
$matrixPointSize = 4; // 点的大小:1到10
QRcode::png($data, $filename, $errorCorrectionLevel, $matrixPointSize, 2);


//三: 生成中间带logo的二维码
include(‘phpqrcode.php‘);
$value=‘http://www.top789.cn‘;
$logo = ‘logo.jpg‘; // 中间的logo
$QR = "moban.jpg"; // 自定义生成的。结束后可以删除
$last = "last.jpg"; // 最终生成的图片
$errorCorrectionLevel = ‘L‘;
$matrixPointSize = 10;
QRcode::png($value, $QR, $errorCorrectionLevel, $matrixPointSize, 2);
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,$last); // 生成最终的文件

【转载】phpqrcode生成二维码的3种类型步骤

标签:下载地址   log   res   contents   qrcode   cts   size   evel   二维码   

原文地址:https://www.cnblogs.com/samphp/p/8576043.html

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