Skip to content

Commit 3404961

Browse files
committed
Changing description
1 parent 8edb6b0 commit 3404961

File tree

2 files changed

+23
-8
lines changed

2 files changed

+23
-8
lines changed

README.md

Lines changed: 23 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,26 @@
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)
34

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+
```
411

5-
Ported from ZXing library
12+
## Requirements
13+
* PHP >= 5.3
14+
* GD Library
615

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

lib/readme.md

Whitespace-only changes.

0 commit comments

Comments
 (0)