基于QRCode的二维码生成包,可以生成四色,九色,十六色,背景图二维码。
Demo安装composer require waitmoonman/qrcodeplus基本使用<?php require 'vendor/autoload.php'; use QrCodePlus\Exception\InvalidException; use QrCodePlus\QrCodePlus; $qrcodeplus = new QrCodePlus(); $qrcodeplus->setText('https://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(); }点击空白处退出提示
评论