qrcode for thinkphp

1.2 2023-09-14 01:00 UTC

This package is not auto-updated.

Last update: 2024-05-23 04:18:00 UTC


README

The ThinkPHP qrcode 二维码生成 SDK

安装

一、执行命令安装

composer require laoqianjunzi/qrcode

使用

添加配置文件

return [
    'cache_dir' => 'uploads/qrcode',           //缓存地址
    'background'=> 'static/image/icon_cover.png'    //背景图
];

使用方法

$code = new QRcoder();
$code_path =  $code->png($register_url)         //生成二维码
    ->logo('static/image/avatar-m.jpg')         //生成logo二维码
    ->background(180,500)                       //给二维码加上背景
    ->text($role,20,['center',740],'#ff4351')   //添加文字水印
    ->text($nick_name,20,['center',780],'#000000')
    ->getPath();                                //获取二维码生成的地址