metzli
metzli copied to clipboard
PHP library to generate Aztec barcodes
So you have the option to save the barcode.
`require 'bootstrap.php'; use Metzli\Encoder\Encoder; use Metzli\Encoder\DataEncoder\BinaryDataEncoder; use Metzli\Renderer\PngRenderer; $encoder = new BinaryDataEncoder(); $code = Encoder::encode(str_repeat("a", 50), 33, $encoder); $renderer = new PngRenderer(); file_put_contents("test.png", $renderer->render($code)); ` The barcode scanner says there...
Hello, Would you be open to a drastic change like this ? https://github.com/bozhinov/PHP-Aztec-fork/blob/master/Aztec/Utils/BitMatrix.php Thanks for the lib Momchil
Hi, when I want to encode large json data i see this error: 'InvalidArgumentException with message 'Data too large'. Is it possible to increase max. data size? Thanks in advance.
@z38 I would love to have support for decoding Aztec files. This would be huge for a project I'm working on, certainly willing to give you full credit for it...