ptachoire/php-dmtx

Datamatrix r/w based on libdmtx <http://www.libdmtx.org/>

1.4.0 2023-04-12 15:21 UTC

This package is not auto-updated.

Last update: 2024-04-25 20:44:11 UTC


README

Datamatrix reader/writer based on libdmtx.

⚠️ The installation of dmtx-utils is required to use the lib.

Install

composer require "ptachoire/php-dmtx:*"

Usage

use Dmtx\Writer;

$writer = new Writer();

//encode message into file
$writer->encode('this is a message')
    ->saveAs('/tmp/image.png');

//encode message and output image 
echo $writer->encode('this is a message')
    ->dump();
use Dmtx\Reader;

$reader = new Reader();

//decode message from data
$reader->decode($encoded_value);

//decode message from file 
echo $reader->decodeFile('/tmp/image.png');

Test

composer install
./vendor/bin/phpunit

Credits

Project structure inspired by Negotiation by willdurand.

License

php-dmtx is released under the MIT License. See the bundled LICENSE file for details.