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