2 Star 1 Fork 0

夏之随想/dolphinBay

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
erweima_supplier.php 1.46 KB
一键复制 编辑 原始数据 按行查看 历史
夏之随想 提交于 2017-04-11 10:49 . 新模板初始化
<?php
define('IN_ECS', true);
require(dirname(__FILE__) . '/includes/init.php');
require(dirname(__FILE__) . '/includes/phpqrcode.php');
$sid= isset($_GET['sid']) ? intval($_GET['sid']) : 0;
$urlinfo = pathinfo($_CFG['erweima_wapurl']);
$data = $urlinfo['dirname'];
if($sid>0){
$data = $urlinfo['dirname'].'/supplier.php?suppId='.$sid;
}
$errorCorrectionLevel = 'L';//容错级别
$matrixPointSize = 6;//生成图片大小
//生成二维码图片
$QR = QRcode::png($data, 'supplier.png', $errorCorrectionLevel, $matrixPointSize, 2);
$QR = 'supplier.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, 'helloweba.png');
//echo '<img src="helloweba.png">';
header('Content-type: image/png');
imagepng($QR);
imagedestroy($QR);
?>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/tf926088/dolphinBay.git
[email protected]:tf926088/dolphinBay.git
tf926088
dolphinBay
dolphinBay
master

搜索帮助