Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 
 
 
FlorianEisenmenger c3db286f46 initial commit pirms 1 gada
..
src/BaconQrCode initial commit pirms 1 gada
tests initial commit pirms 1 gada
.travis.yml initial commit pirms 1 gada
LICENSE initial commit pirms 1 gada
Module.php initial commit pirms 1 gada
README.md initial commit pirms 1 gada
autoload_classmap.php initial commit pirms 1 gada
autoload_function.php initial commit pirms 1 gada
autoload_register.php initial commit pirms 1 gada
composer.json initial commit pirms 1 gada

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