grav/plugins/login/vendor/bacon/bacon-qr-code
2023-01-11 14:53:38 +01:00
..
src
tests
.gitignore (Grav GitSync) Automatic Commit from buha 2023-01-11 14:53:38 +01:00
.travis.yml (Grav GitSync) Automatic Commit from buha 2023-01-11 14:53:38 +01:00
autoload_classmap.php
autoload_function.php
autoload_register.php
CHANGELOG.md
composer.json
LICENSE
Module.php
README.md

QR Code generator

Master: Build Status

Introduction

BaconQrCode is a port of QR code portion of the ZXing library. It currently only features the encoder part, but could later receive the decoder part as well.

As the Reed Solomon codec implementation of the ZXing library performs quite slow in PHP, it was exchanged with the implementation by Phil Karn.

Example usage

$renderer = new \BaconQrCode\Renderer\Image\Png();
$renderer->setHeight(256);
$renderer->setWidth(256);
$writer = new \BaconQrCode\Writer($renderer);
$writer->writeFile('Hello World!', 'qrcode.png');