QR-Code-plus彩色二维码生成包

联合创作 · 2023-09-30 12:56

基于 QR Code 的二维码生成包,可以生成四色, 九色, 十六色, 背景图二维码。

Demo

安装

composer require waitmoonman/qrcodeplus

基本使用

<?php
    
    require 'vendor/autoload.php';
    
    use QrCodePlus\Exception\InvalidException;
    use QrCodePlus\QrCodePlus;
    
    $qrcodeplus = new QrCodePlus();
    $qrcodeplus->setText('http://blog.shiguopeng.cn');
    $qrcodeplus->setSize(500);
    
    
    try
    {
        // 设置颜色, 四种或者九种或者十六种
        $param = [
            '#087',
            '#431',
            '#a2d',
            '#12d',
            '#098',
            '#182',
            '#039',
            '#20d',
            '#520',
        ];
        
        // If you want to generate, the picture is the background
        // $param = imagecreatefrompng('your.png');
    
        $qrcodeplus->build($param);
    
    }
    catch (InvalidException $e)
    {
        var_dump($e->getMessage());
    
        exit();
    }
浏览 1
点赞
评论
收藏
分享

手机扫一扫分享

编辑 分享
举报
评论
图片
表情
推荐
点赞
评论
收藏
分享

手机扫一扫分享

编辑 分享
举报