posts/plugins/login/vendor/bacon/bacon-qr-code
grav 72f4f306e9 (Grav GitSync) Automatic Commit from grav 2021-04-20 18:50:33 +00:00
..
src (Grav GitSync) Automatic Commit from grav 2021-04-20 18:50:33 +00:00
tests (Grav GitSync) Automatic Commit from grav 2021-04-20 18:50:33 +00:00
.gitignore (Grav GitSync) Automatic Commit from grav 2021-04-20 18:50:33 +00:00
.travis.yml (Grav GitSync) Automatic Commit from grav 2021-04-20 18:50:33 +00:00
CHANGELOG.md (Grav GitSync) Automatic Commit from grav 2021-04-20 18:50:33 +00:00
LICENSE (Grav GitSync) Automatic Commit from grav 2021-04-20 18:50:33 +00:00
Module.php (Grav GitSync) Automatic Commit from grav 2021-04-20 18:50:33 +00:00
README.md (Grav GitSync) Automatic Commit from grav 2021-04-20 18:50:33 +00:00
autoload_classmap.php (Grav GitSync) Automatic Commit from grav 2021-04-20 18:50:33 +00:00
autoload_function.php (Grav GitSync) Automatic Commit from grav 2021-04-20 18:50:33 +00:00
autoload_register.php (Grav GitSync) Automatic Commit from grav 2021-04-20 18:50:33 +00:00
composer.json (Grav GitSync) Automatic Commit from grav 2021-04-20 18:50:33 +00:00

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');