二维码的分类
- 线性堆叠式二维码
- 矩阵式二维码
二维码的优缺点
优点
- 信息容量大
- 编码范围广
- 容错能力强
- 译码可靠性高
- 可引入加密措施
- 成本低,易制作
缺点
- 二维码技术成为手机病毒、钓鱼网站传播的新渠道
- 信息泄密
目前流行的三大国际标准
- pdf417:不支持中文
- dm:专利未公开,需支付专利费用
- qr code:专利公开,支持中文
qr code 纠错能力
- l级:约可纠错7%的数据码字
- m级:约可纠错15%的数据码字
- q级:约可纠错25%的数据码字
- h级:约可纠错30%的数据码字
前提条件
gd库
一、php生成qr code
目录结构
1、qrcode_create.php
ps:生成普通二维码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
include_once "./qrcode/phpqrcode.php" ;
/**
* 参数:p1:二维码包含的内容 p2:输出的文件名 p3:容错级别 p4:大小 p5:外边距margin p6:保存路径
* 在浏览器上直接生成一个二维码(内容为abc)
*/
qrcode::png( "abc" );
qrcode::png( "abc" ,false,qr_eclevel_l,10,5,false);
/**
* 生成文件到本地
* 参数:p1:二维码包含的内容 p2:输出的文件名 p3:容错级别 p4:大小 p5:外边距margin p6:是否保存并打印(false 直接生成 true 生成且打印)
* ps:$saveandprint源码的p6参数做了修改
*/
qrcode::png( "abc" , "abc.jpg" ,qr_eclevel_h,10,2,false);
|
2、qrcode_logo.php
ps:生成带logo的二维码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
<?php
/**
* created by phpstorm.
* user: user
* date: 2018/8/16
* time: 10:43
*/
include "./qrcode/phpqrcode.php" ;
$txt = "测试内容" ;
$picpathandname = "./pic/abc.jpg" ; //二维码保存路径和名称
$level = 'l' ;
$size = 5;
$is_logo = 1; //是否包含logo 0否 1是
$margin = 2; //边距
$saveandprint = true; //是否保存,保存时,$picpathandname设置为true
//生成二维码图片qrcode::png($txt, $picpathandname, $level, $size, $margin,$saveandprint);
if ( $is_logo == 1){
$qr = $picpathandname ; //已经生成的原始二维码图
$logo = './pic/logo.png' ;
$logo_re = './pic/test_logo.png' ;
$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 , $logo_re );
}
|
3、qrcode_vcard.php (生成电子签名)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<?php
/**
* created by phpstorm.
* user: user
* date: 2018/8/15
* time: 23:00
*/
require_once "./qrcode/phpqrcode.php" ;
/**
* 生成电子签名
* ps;使用微信扫描二维码
*/
$content = 'begin:vcard' . "\n" ; //起始标志
$content .= 'version:2.1' . "\n" ; //当前版本
$content .= 'n:周' . "\n" ; //姓
$content .= 'fn:勇' . "\n" ; //名
$content .= 'org:江苏东大集成电路系统有限公司' . "\n" ; //公司名称
$content .= 'title:php研发程序员' . "\n" ; //职位
$content .= 'tel;work;voice:0523-83623173' . "\n" ; //工作电话
$content .= 'adr;work:;;高新区星火路#2;南京市;江苏省;225762;中国' . "\n" ; //工作地址
$content .= 'adr;home:;;下圩镇王横村178号;兴化市;江苏省;225762;中国' . "\n" ; //家庭地址(街道,地级市,省,邮编,国家)
$content .= 'tel;type:18000001111' . "\n" ; //移动电话
$content .= 'email:123456@qq.com' . "\n" ; //邮箱
$content .= 'url:www.baidu.com' . "\n" ; //个人主页
$content .= 'end:vcard' . "\n" ; //结束标志
qrcode::png( $content );
|
二、jquery生成qr code
源码地址:https://github.com/jeromeetienne/jquery-qrcode
jquery_create.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!doctype html>
<html lang= "en" >
<head>
<meta charset= "utf-8" >
<title>jquery生成二维码</title>
<script src= "https://code.jquery.com/jquery-3.3.1.min.js" ></script>
<script type= "text/javascript" src= "./jquery-qrcode/jquery.qrcode.min.js" ></script>
</head>
<body>
<div id= "qrcode" ></div>
<script>
//$('#qrcode').qrcode("this plugin is great");
$( '#qrcode' ).qrcode({width: 64,height: 64,text: "jason" });
</script>
</body>
</html>
|
三、php识别二维码
1、方法一
环境需求,安装如下扩展
- imagemagick
- zbar
- php-zbarcode
2、方法二
php识别二维码(无需安装扩展),初步测试普通二维码可以,带logo的二维码,容错级别需要设置高一点页可以
qrreader类:https://github.com/baagee/php_qrreader
1
2
3
4
5
|
<?php
include_once ( './qrreader/lib/qrreader.php' );
$qrcode = new qrreader( './test_logo.png' ); //图片路径
$text = $qrcode ->text(); //返回识别后的文本
echo $text ;
|
链接:https://pan.baidu.com/s/1icpwrjiqixdcxeoc52pnsg 密码:c5y7
到此这篇关于php二维码的生成与识别案例的文章就介绍到这了,更多相关php二维码生成与识别内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!
原文链接:https://blog.csdn.net/qq_29627497/article/details/81780564