Skip to content

Commit ddb1cc2

Browse files
committed
Changing description
1 parent 8edb6b0 commit ddb1cc2

File tree

2 files changed

+24
-8
lines changed

2 files changed

+24
-8
lines changed

README.md

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

lib/readme.md

Whitespace-only changes.

0 commit comments

Comments
 (0)