thinkphp5 二维码生成 composer

进入extend文件夹

composer require endroid/qrcode

2.将二维码生成封装为服务

QrcodeServer.php代码如下:

<?php
/**
 * Created by PhpStorm.
 * User: cdjyj21
 * Date: 2018/9/4
 * Time: 11:57
 */

namespace app\services;

//引入刚刚添加的composer安装的类  里面的自动加载类

  use think\facade\App;
  require_once App::getRootPath().‘/extend/vendor/autoload.php‘;

use Endroid\QrCode\ErrorCorrectionLevel;
use Endroid\QrCode\LabelAlignment;
use Endroid\QrCode\QrCode;

class QrcodeServer
{
    protected $_qr;
    protected $_encoding        = ‘UTF-8‘;              // 编码类型
    protected $_size            = 300;                  // 二维码大小
    protected $_logo            = false;                // 是否需要带logo的二维码
    protected $_logo_url        = ‘‘;                   // logo图片路径
    protected $_logo_size       = 80;                   // logo大小
    protected $_title           = false;                // 是否需要二维码title
    protected $_title_content   = ‘‘;                   // title内容
    protected $_generate        = ‘display‘;            // display-直接显示  writefile-写入文件
    protected $_file_name       = ‘./static/qrcode‘;    // 写入文件路径
    const MARGIN           = 10;                        // 二维码内容相对于整张图片的外边距
    const WRITE_NAME       = ‘png‘;                     // 写入文件的后缀名
    const FOREGROUND_COLOR = [‘r‘ => 0, ‘g‘ => 0, ‘b‘ => 0, ‘a‘ => 0];          // 前景色
    const BACKGROUND_COLOR = [‘r‘ => 255, ‘g‘ => 255, ‘b‘ => 255, ‘a‘ => 0];    // 背景色

    public function __construct($config) {
        isset($config[‘generate‘])      &&  $this->_generate        = $config[‘generate‘];
        isset($config[‘encoding‘])      &&  $this->_encoding        = $config[‘encoding‘];
        isset($config[‘size‘])          &&  $this->_size            = $config[‘size‘];
        isset($config[‘logo‘])          &&  $this->_logo            = $config[‘logo‘];
        isset($config[‘logo_url‘])      &&  $this->_logo_url        = $config[‘logo_url‘];
        isset($config[‘logo_size‘])     &&  $this->_logo_size       = $config[‘logo_size‘];
        isset($config[‘title‘])         &&  $this->_title           = $config[‘title‘];
        isset($config[‘title_content‘]) &&  $this->_title_content   = $config[‘title_content‘];
        isset($config[‘file_name‘])     &&  $this->_file_name       = $config[‘file_name‘];
    }

    /**
     * 生成二维码
     * @param $content //需要写入的内容
     * @return array | page input
     */
    public function createServer($content) {
        $this->_qr = new QrCode($content);
        $this->_qr->setSize($this->_size);
        $this->_qr->setWriterByName(self::WRITE_NAME);
        $this->_qr->setMargin(self::MARGIN);
        $this->_qr->setEncoding($this->_encoding);
        $this->_qr->setErrorCorrectionLevel(ErrorCorrectionLevel::HIGH);   // 容错率
        $this->_qr->setForegroundColor(self::FOREGROUND_COLOR);
        $this->_qr->setBackgroundColor(self::BACKGROUND_COLOR);
        // 是否需要title
        if ($this->_title) {
            $this->_qr->setLabel($this->_title_content, 16, null, LabelAlignment::CENTER);
        }
        // 是否需要logo
        if ($this->_logo) {
            $this->_qr->setLogoPath($this->_logo_url);
            $this->_qr->setLogoWidth($this->_logo_size);
        }

        $this->_qr->setValidateResult(false);

        if ($this->_generate == ‘display‘) {
            // 展示二维码
            // 前端调用 例:<img src="http://localhost/qr.php?url=base64_url_string">
            header(‘Content-Type: ‘ . $this->_qr->getContentType());
            return $this->_qr->writeString();
        } else if ($this->_generate == ‘writefile‘) {
            // 写入文件
            $file_name = $this->_file_name;
            return $this->generateImg($file_name);
        } else {
            return [‘success‘ => false, ‘message‘ => ‘the generate type not found‘, ‘data‘ => ‘‘];
        }
    }

    /**
     * 生成文件
     * @param $file_name //目录文件 例: /tmp
     * @return array
     */
    public function generateImg($file_name) {
        $file_path = $file_name . DIRECTORY_SEPARATOR . uniqid() . ‘.‘ . self::WRITE_NAME;

        if (!file_exists($file_name)) {
            mkdir($file_name, 0777, true);
        }

        try {
            $this->_qr->writeFile($file_path);
            $data = [
                ‘url‘ => $file_path,
                ‘ext‘ => self::WRITE_NAME,
            ];
            return [‘success‘ => true, ‘message‘ => ‘write qrimg success‘, ‘data‘ => $data];
        } catch (\Exception $e) {
            return [‘success‘ => false, ‘message‘ => $e->getMessage(), ‘data‘ => ‘‘];
        }
    }

}
3.调用

例:

<?php
/**
 * Created by PhpStorm.
 * User: cdjyj21
 * Date: 2018/9/4
 * Time: 11:57
 */

namespace app\test\controller;

use app\services\QrcodeServer;

class Qrcode
{
    /**
     * 直接输出二维码 + 生成二维码图片文件
     */
    public function create(){
        // 自定义二维码配置
        $config = [
            ‘title‘         => true,
            ‘title_content‘ => ‘test‘,
            ‘logo‘          => true,
            ‘logo_url‘      => ‘./logo.png‘,
            ‘logo_size‘     => 80,
        ];

        // 直接输出
        $qr_url = ‘http://www.baidu.com?id=‘ . rand(1000, 9999);

        $qr_code = new QrcodeServer($config);
        $qr_img = $qr_code->createServer($qr_url);
        echo $qr_img;

        // 写入文件
        $qr_url = ‘这是个测试二维码‘;
        $file_name = ‘./static/qrcode‘;  // 定义保存目录

        $config[‘file_name‘] = $file_name;
        $config[‘generate‘]  = ‘writefile‘;

        $qr_code = new QrcodeServer($config);
        $rs = $qr_code->createServer($qr_url);
        print_r($rs);

        exit;
    }
}

在浏览器中直接访问create()方法,会直接输出二维码,同时会在自定义保存目录下生成一张二维码图片。效果如下:

那这种直接输出的二维码怎么应用于项目中呢,一般都是直接写在html 中的 <img> 标签中,例如:

<img src="http://localhost:8080/projecttest/qrtest?id=1234"  alt="这是一个二维码" />

这里罗列下我看懂的几个参数,也算给自己做个笔记吧。

参数名 描述 示例
setText 设置文本 https://www.baidu.com
setSize 设置二维码的大小,这里二维码应该是正方形的,所以相当于长宽 400
setMargin 设置二维码边距 10
setForegroundColor 设置前景色,RGB颜色 array(‘r‘ => 0, ‘g‘ => 0, ‘b‘ => 0, ‘a‘ => 0)
setBackgroundColor 设置背景色,RGB颜色 array(‘r‘ => 0, ‘g‘ => 0, ‘b‘ => 0, ‘a‘ => 0)
setEncoding 设置编码 utf8
setErrorCorrectionLevel 设置错误级别(low / medium / quartile / high) high
setLogoPath 设置logo路径 logo.png
setLogoWidth 设置logo大小 50
setLabel 设置标签 test
setLabelFontSize 设置标签字体大小 16
setLabelFontPath 设置标签字体路径 null
setLabelAlignment 设置标签对齐方式(left / center / right) center
setLabelMargin 设置标签边距 array(‘t‘ => 10,‘r‘ => 20,‘b‘ => 10,‘l‘ => 30)
setWriterRegistry    
setWriter    
setWriterByName 写入文件的后缀名 png
setWriterByPath    
setWriterByExtension    
setValidateResult    
writeString    
writeDataUri    
writeFile 写入文件 test.png

参考原文:https://www.jianshu.com/p/9b933907acd6

原文地址:https://www.cnblogs.com/jasonLiu2018/p/12073148.html

时间: 2024-10-10 20:10:08

thinkphp5 二维码生成 composer的相关文章

【thinkphp5.1】 endroid/qrcode 二维码生成

composer 链接: https://packagist.org/packages/endroid/qrcode 注意:PHP版本 要求 7.1+ 1. 使用 composer 安装 endroid/qrcode: composer require endroid/qrcode 2 将二维码生成封装为服务 位置: /appliction/common/services/QrcodeService.php 3 QrcodeServer.php 代码如下 <?php /** * 二维码服务 *

java二维码生成

二维码,是一种采用黑白相间的平面几何图形经过相应的编码算法来记载文字.图画.网址等信息的条码图画.如下图 二维码的特色: 1.  高密度编码,信息容量大 可容纳多达1850个大写字母或2710个数字或1108个字节,或500多个汉字,比一般条码信息容量约高几十倍. 2.  编码规模广 该条码能够把图画.声响.文字.签字.指纹等能够数字化的信息进行编码,用条码表明出来:能够表明多种语言文字:可表明图画数据. 3.  容错能力强,具有纠错功用 这使得二维条码因穿孔.污损等导致部分损坏时,照样能够正确

.NET 二维码生成(ThoughtWorks.QRCode)

引用ThoughtWorks.QRCode.dll (源代码里有) 1.简单二维码生成及解码代码: //生成二维码方法一 private void CreateCode_Simple(string nr) { QRCodeEncoder qrCodeEncoder = new QRCodeEncoder(); qrCodeEncoder.QRCodeEncodeMode = QRCodeEncoder.ENCODE_MODE.BYTE; qrCodeEncoder.QRCodeScale = 4

Chrome浏览器二维码生成插件

  猛击就可以使用啦->>>猛击使用   源码如下: 源码打包   源码: jquery-2.1.3.min.js jquery.qrcode.min.js https://github.com/jeromeetienne/jquery-qrcode spectrum.css spectrum.js https://github.com/bgrins/spectrum manifest.json { "manifest_version": 2, "name&

【转】Android 二维码 生成和识别(附Demo源码)--不错

原文网址:http://www.cnblogs.com/mythou/p/3280023.html 今天讲一下目前移动领域很常用的技术——二维码.现在大街小巷.各大网站都有二维码的踪迹,不管是IOS.Android.WP都有相关支持的软件.之前我就想了解二维码是如何工作,最近因为工作需要使用相关技术,所以做了初步了解.今天主要是讲解如何使用ZXing库,生成和识别二维码.这篇文章实用性为主,理论性不会讲解太多,有兴趣可以自己查看源码. 1.ZXing库介绍 这里简单介绍一下ZXing库.ZXin

二维码生成delphi版

二维码生成delphi版 生成二维码的软件,代码从C语言转换过来(源地址:http://fukuchi.org/works/qrencode/),断断续续的差不多花了一周时间来转换和调试.在转换过程中学到了不少东西,特别是对于delphi和C语言中一些概念比较模糊的地方,有了更清楚地认识. 支持中英文文字生成二维码,在手机上使用快拍和微信扫描后显示正常,无乱码.在delphi 7 / delphi 2010 / delphi XE5上调试通过.qrencode的源代码为C语言,支持生成png格式

IOS 二维码生成

这篇博客将会介绍二维码的生成. 由于没有什么东西值得长篇大论的,所以这里我就通过代码的实现介绍二维码. 第一部分 第一部分是二维码的简单生成没有其他重点介绍. 效果图 代码部分 // // ViewController.m // CX 二维码生成 // // Created by ma c on 16/4/12. // Copyright ? 2016年 bjsxt. All rights reserved. // #import "ViewController.h" #import

iOS开发 二维码生成

基于libqrencode的二维码生成 + (void)drawQRCode:(QRcode *)code context:(CGContextRef)ctx size:(CGFloat)size { unsigned char *data = 0; int width; data = code->data; width = code->width; float zoom = (double)size / (code->width + 2.0 * qr_margin); CGRect r

超实用python小项目--基于python的手机通讯录二维码生成网站--1、项目介绍和开发环境

这个项目是我做完整的第一个python web项目,对于新手来说,这个项目绝对是一个特别好的练手项目. 起名还是困难,但是自己确实比较烦输入这么长的名字(手机通讯录二维码生成网站)去定义这个网站,所以还是给这个项目起个名字吧,叫什么呢?就叫 "鹅日通讯录"吧(Earth address list). --------------------------------------------------------------------------------------------我是