Feuerwehr-eppingen/vendor/bacon/bacon-qr-code
2022-08-17 21:48:37 +02:00
..
src/BaconQrCode Anpassung für Lauffähigkeit auf MacBook 2022-08-17 21:48:37 +02:00
tests Anpassung für Lauffähigkeit auf MacBook 2022-08-17 21:48:37 +02:00
.travis.yml Anpassung für Lauffähigkeit auf MacBook 2022-08-17 21:48:37 +02:00
autoload_classmap.php Anpassung für Lauffähigkeit auf MacBook 2022-08-17 21:48:37 +02:00
autoload_function.php Anpassung für Lauffähigkeit auf MacBook 2022-08-17 21:48:37 +02:00
autoload_register.php Anpassung für Lauffähigkeit auf MacBook 2022-08-17 21:48:37 +02:00
composer.json Anpassung für Lauffähigkeit auf MacBook 2022-08-17 21:48:37 +02:00
LICENSE Anpassung für Lauffähigkeit auf MacBook 2022-08-17 21:48:37 +02:00
Module.php Anpassung für Lauffähigkeit auf MacBook 2022-08-17 21:48:37 +02:00
README.md Anpassung für Lauffähigkeit auf MacBook 2022-08-17 21:48:37 +02:00

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