基于jquery.qrcode.min.js生成的二维码怎么设置大小
4个回答
展开全部
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<link href="css/bootstrap.css" rel="stylesheet" />
<script type='text/javascript' src='http://cdn.staticfile.org/jquery/2.1.1/jquery.min.js'></script>
<script type="text/javascript" src="http://cdn.staticfile.org/jquery.qrcode/1.0/jquery.qrcode.min.js"></script>
<style>
body {
font-size: 14px;
}
#body div {
margin-top: 4rem
}
.clearfloat {
zoom: 1
}
#cover {
position: absolute;
left: 0px;
top: 0px;
background: rgba(0, 0, 0, 0.8);
width: 100%; /*宽度设置为100%,这样才能使隐藏背景层覆盖原页面*/
height: 100%;
filter: alpha(opacity=100); /*设置透明度为60%*/
opacity: 1; /*非IE浏览器下设置透明度为60%*/
display: none;
z-Index: 999;
}
</style>
</head>
<body>
<div id="qrcode"></div>
<script type="text/javascript">
var str = "hellow";
jQuery('#qrcode').qrcode({width: 64,height: 64,text: str});//这里可以设置大小~~
</script>
</body>
</html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<link href="css/bootstrap.css" rel="stylesheet" />
<script type='text/javascript' src='http://cdn.staticfile.org/jquery/2.1.1/jquery.min.js'></script>
<script type="text/javascript" src="http://cdn.staticfile.org/jquery.qrcode/1.0/jquery.qrcode.min.js"></script>
<style>
body {
font-size: 14px;
}
#body div {
margin-top: 4rem
}
.clearfloat {
zoom: 1
}
#cover {
position: absolute;
left: 0px;
top: 0px;
background: rgba(0, 0, 0, 0.8);
width: 100%; /*宽度设置为100%,这样才能使隐藏背景层覆盖原页面*/
height: 100%;
filter: alpha(opacity=100); /*设置透明度为60%*/
opacity: 1; /*非IE浏览器下设置透明度为60%*/
display: none;
z-Index: 999;
}
</style>
</head>
<body>
<div id="qrcode"></div>
<script type="text/javascript">
var str = "hellow";
jQuery('#qrcode').qrcode({width: 64,height: 64,text: str});//这里可以设置大小~~
</script>
</body>
</html>
展开全部
public function qrcode($uid, $value){
$d='./Qrcode/'.$uid;
is_dir($d) || mkdir($d,0777,true);
include APP_PATH.'Class/phpqrcode.php';
$errorCorrectionLevel = 'L';//容错级别
$matrixPointSize = 4;//生成图片大小
$QR=$d.'/qrcode.png';
//生成二维码图片(参数顺序:文本内容,输出图片名称,容错级别,生成图片大小,边距,是否保存并显示)
QRcode::png($value, $QR, $errorCorrectionLevel, $matrixPointSize, 2);
$logo = './Qrcode/logo.png';//准备好的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_x = ($QR_width - $logo_qr_width) / 2;
$from_y = ($QR_width - $logo_qr_width) / 2;
//重新组合图片并调整大小
imagecopyresampled($QR, $logo, $from_x, $from_y, 0, 0, $logo_qr_width,
$logo_qr_height, $logo_width, $logo_height);
}
//输出图片
imagepng($QR, $d.'/myQrCode.png');
//echo '<img src="'.__ROOT__.'/'.$d.'/myQrCode.png" width="300">';
}
看看这段代码的参数你就明白了
$d='./Qrcode/'.$uid;
is_dir($d) || mkdir($d,0777,true);
include APP_PATH.'Class/phpqrcode.php';
$errorCorrectionLevel = 'L';//容错级别
$matrixPointSize = 4;//生成图片大小
$QR=$d.'/qrcode.png';
//生成二维码图片(参数顺序:文本内容,输出图片名称,容错级别,生成图片大小,边距,是否保存并显示)
QRcode::png($value, $QR, $errorCorrectionLevel, $matrixPointSize, 2);
$logo = './Qrcode/logo.png';//准备好的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_x = ($QR_width - $logo_qr_width) / 2;
$from_y = ($QR_width - $logo_qr_width) / 2;
//重新组合图片并调整大小
imagecopyresampled($QR, $logo, $from_x, $from_y, 0, 0, $logo_qr_width,
$logo_qr_height, $logo_width, $logo_height);
}
//输出图片
imagepng($QR, $d.'/myQrCode.png');
//echo '<img src="'.__ROOT__.'/'.$d.'/myQrCode.png" width="300">';
}
看看这段代码的参数你就明白了
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
new QRCode里面的参数不是有width和height么?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2016-05-25
展开全部
这里没有回答,太多广告了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询