mpdf/qrcode

QR code generator for mPDF

Maintainers

Details

github.com/mpdf/qrcode

Source

Issues

Fund package maintenance!
www.paypal.me/mpdf

Installs: 1 524 650

Dependents: 38

Suggesters: 0

Security: 0

Stars: 44

Watchers: 5

Forks: 13

Open Issues: 2

Language:HTML

v1.2.1 2024-06-04 13:40 UTC

This package is auto-updated.

Last update: 2024-07-02 14:57:37 UTC


README

mPDF QR code library

QR code generating library with HTML/PNG/mPDF output possibilities.

Build Status

This is based on QrCode library bundled with mPDF until v8.0, made by Laurent Minguet. It is provided under LGPL license.

Installation

$ composer require mpdf/qrcode

Usage

<?php

use Mpdf\QrCode\QrCode;
use Mpdf\QrCode\Output;

$qrCode = new QrCode('Lorem ipsum sit dolor');

// Save black on white PNG image 100 px wide to filename.png. Colors are RGB arrays.
$output = new Output\Png();
$data = $output->output($qrCode, 100, [255, 255, 255], [0, 0, 0]);
file_put_contents('filename.png', $data);

// Echo a SVG file, 100 px wide, black on white.
// Colors can be specified in SVG-compatible formats
$output = new Output\Svg();
echo $output->output($qrCode, 100, 'white', 'black');

// Echo an HTML table
$output = new Output\Html();
echo $output->output($qrCode);