zoukankan      html  css  js  c++  java
  • 【转载】phpqrcode生成二维码的3种类型步骤

    <?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); // 生成最终的文件

  • 相关阅读:
    七、文件的排序、合并和分割
    六、awk编程
    五、sed命令
    四、grep命令
    三、正则表达式
    二、Linux文件系统和文本编辑器
    一、shell基础知识点
    mysql实现交易编码生成(代替oracle的序列)
    新安装Centos无法访问网络
    uiview 动画
  • 原文地址:https://www.cnblogs.com/samphp/p/8576043.html
Copyright © 2011-2022 走看看