简介 目录 评价 推荐
  • weixin_慕沐3022703 2021-06-30

    生成二维码

    jquery版本

    https://github.com/jeromeetienne/jquery-qrcode

    在线版 jquery.qrcode

    https://www.bootcdn.cn/jquery.qrcode/

    php版本

    http://phpqrcode.sourceforge.net/


    解析二维码

    https://imagemagick.org/script/index.php

    http://zbar.sourceforge.net/download.html

    https://github.com/mkoppanen/php-zbarcode

    0赞 · 0采集
  • harry98 2021-03-01

    优点:1、信息容量大    2、编码范围广    3、容错能力强    4、驿码可靠性高    5、可引入加密措施    6、成本低,易制作

    缺点:1、二维码技术成为手机病毒、钓鱼网站传播的新渠道    2、信息泄密

    0赞 · 0采集
  • UFO2015 2020-08-07

    二维码 缺点

    截图
    0赞 · 0采集
  • UFO2015 2020-08-07

    二维码 优点

    截图
    0赞 · 0采集
  • UFO2015 2020-08-07

    矩阵式二维码

    截图
    0赞 · 0采集
  • UFO2015 2020-08-07

    二维码,一维码

    截图
    0赞 · 0采集
  • 慕侠0494893 2020-02-12

    php识别二维码

    安装imageMagick,zbar,php-zbarcode三个组件

    $image = new ZBarCodeImage("test.jpg");

    $scanner = new ZBarCodeScanner();

    $barcode = $scanner->scan($image);

    if(!empty($barcode)){

        var_dump($barcode);

    }

    0赞 · 0采集
  • 慕侠0494893 2020-02-12

    php生成电子名片

    include "qrlib.php";

    $content = 'BEGIN:VCARD'."\n";

    $content = 'VERSION:2.1'."\n";

    $content = 'N:张'."\n";    //姓

    $content = 'FN:三'."\n";   //名

    $content = 'ORG:北京天融信公司'."\n";  //公司地址

    $content = 'TEL;WORK;VOICE:17710556985'."\n";  //工作单位电话

    $content = 'TEL;HOME;VOICE:17710556985'."\n";  //家里电话

    $content = 'TEL;TYPE=cell:17710556985'."\n";   //移动电话

    $content = 'ADR;HOME:;;德外大街10号;西城区;北京市;433330;中国'."\n";   //家庭住址

    $content = 'EMAIL:zhangsan@qq.com'."\n";  //邮箱

    $content = 'URL:http://zhangsan.com'."\n";  //网站

    $content = 'END:VCARD'."\n";

    QRcode::png($content);


    0赞 · 0采集
  • 慕侠0494893 2020-02-12

    jquery生成QR Code

    引入jquery.qrcode.min.js文件

    <!DOCTYPE html>

    <html>

    <head>

        <title>qrcode</title>

    </head>

    <body>

        <div id="qrcode"></div>

        <script src="jquery.min.js"></script>

        <script src="jquery.qrcode.min.js"></script>

        <script type="text/javascript">

            $("#qrcode").qrcode("this is a qrcode");

            $("#qrcode").qrcode({width:64, height:50, text:"this is a qrcode"});

        </script>

    </body>

    </html>


    0赞 · 0采集
  • 慕侠0494893 2020-02-12

    include "qrlib.php";

    //png($text, $outfile=false,$level=QR_ECLEVEL_L,$size=3,$margin=4,$saveandprint=false)

    //最后一个参数$saveandprint,这里有一个bug,png这个函数里面,直接将$saveandprint这个变量赋值成false,所以你在这里赋值为true,并不会起作用

    QRcode::png("abc","abc.jpg",QR_ECLEVEL_L,10,0,true);

    0赞 · 0采集
  • 慕侠0494893 2020-02-12

    QR Code

    目前流星的三大国际标准

    1. PDF417:不支持中文

    2. DM:专利未公开,需要支付专利费用

    3. QR Code:专利公开,支持中文

    QR Code比其他二维码相比,具有识读速度快、数据密度大、占用空间小的优势

    0赞 · 0采集
  • 慕侠0494893 2020-02-12

    二维码的优缺点

    优点

    1. 信息容量大

    2. 编码范围广

    3. 容错能力强

    4. 译码可靠性高

    5. 可引入加密措施

    6. 成本低,易制作

    缺点:

    1. 二维码技术成为手机病毒、钓鱼网站传播的新渠道

    2. 信息泄密

    0赞 · 0采集
  • PcWqj 2019-08-06

    php电子名片

    截图
    0赞 · 0采集
  • PcWqj 2019-08-06

    QR Code纠错能力

    截图
    0赞 · 0采集
  • 我就是爱学习 2018-08-10

    vcard格式

    截图
    0赞 · 0采集
  • warm橙子 2018-06-06

    生成电子名片信息填写

    截图
    0赞 · 0采集
  • 阿柴的围笑 2018-05-25

    常用信息!!

    截图
    0赞 · 0采集
  • xtjd63 2018-05-13
    MAMP(MAC)开发软件系统 WAMP(WINDOWS)开发软件系统
    截图
    0赞 · 0采集
  • root750 2018-05-06

    php生成电子名片

    截图
    0赞 · 0采集
  • surMUKE 2018-04-27

    标签

    截图
    0赞 · 0采集
  • 慕前端0194481 2018-03-05
    名片内容前面的英文简介
    截图
    0赞 · 1采集
  • ailinier 2018-02-24
    <script type="text/javascript" src="jquery.qrcode.min.js"></script> <div id="qrcode"></div> jquery('#qrcode').qrcode("this plugin is great");
    0赞 · 0采集
  • AAaaaaaaaiYING 2018-02-22
    去PHP QRCODE 下载二维码引入代码 然后在需要用到的地方引入 qrlib.php 文件 然后静态的调用 PNG 方法 输入相应的参数即可
    0赞 · 0采集
  • qq_杜彬_0 2018-01-28
    php生成电子名片
    截图
    0赞 · 0采集
  • 野生码农在线co腚 2018-01-26
    <script type="text/javascript"> function utf16to8(str) { var out, i, len, c; out = ""; len = str.length; for(i = 0; i < len; i++) { c = str.charCodeAt(i); if ((c >= 0x0001) && (c <= 0x007F)) { out += str.charAt(i); } else if (c > 0x07FF) { out += String.fromCharCode(0xE0 | ((c >> 12) & 0x0F)); out += String.fromCharCode(0x80 | ((c >> 6) & 0x3F)); out += String.fromCharCode(0x80 | ((c >> 0) & 0x3F)); } else { out += String.fromCharCode(0xC0 | ((c >> 6) & 0x1F)); out += String.fromCharCode(0x80 | ((c >> 0) & 0x3F)); } } return out; } </script> <script type="text/javascript"> $('#qrcode').qrcode(utf16to8(" this is test 慕课网 ")); $('#qrcode').qrcode({width: 64,height: 64,text:utf16to8('this is test 慕课网') }); </script>
    0赞 · 0采集
  • qq_縌态度_0 2018-01-19
    电子名片格式
    截图
    0赞 · 0采集
  • Dadark 2017-12-13
    php生成电子名片
    截图
    0赞 · 0采集
  • Dadark 2017-12-13
    名片创建
    截图
    0赞 · 0采集
  • 笑的很甜丶 2017-12-02
    本章可以学习到通过二维码自动生成电子名片。
    0赞 · 0采集
  • 慕婉清5122655 2017-11-28
    啊啊啊
    0赞 · 0采集
数据加载中...
开始学习 免费