File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- # php-qrcode-detector-decoder
2- Php library to detect and decode QR-codes
1+ # QR code decoder / reader for PHP
2+ This is a PHP library to detect and decode QR-codes.
3+ This is first and only QR code reader that works without extensions.
4+ Ported from [ ZXing library] ( https://github.com/zxing/zxing )
35
6+ ## Usage
7+ ``` php
8+ include_once('./lib/QrReader.php');
9+ $qrcode = new QrReader('path/to_image');
10+ $text = $qrcode->text(); //return decoded text from QR Code
11+ ```
412
5- Ported from ZXing library
13+ ## Requirements
14+ * PHP >= 5.3
15+ * GD Library
616
7- How to use:
8- --------------
9- include_once('./lib/QrReader.php');
10- $qrcode = new QrReader('path/to_image');
11- print $text = $qrcode->text();
17+
18+ ## Contributing
19+
20+ You can help the project by adding features, cleaning the code, adding composer and other.
21+
22+
23+ 1 . Fork it
24+ 2 . Create your feature branch: ` git checkout -b my-new-feature `
25+ 3 . Commit your changes: ` git commit -am 'Add some feature' `
26+ 4 . Push to the branch: ` git push origin my-new-feature `
27+ 5 . Submit a pull request
You can’t perform that action at this time.
0 commit comments