Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tzepart/qr-decoder
https://github.com/tzepart/qr-decoder
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/tzepart/qr-decoder
- Owner: TzepART
- License: mit
- Created: 2019-01-16T16:20:44.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-31T12:56:44.000Z (over 4 years ago)
- Last Synced: 2024-04-17T11:29:55.947Z (7 months ago)
- Language: PHP
- Size: 56.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# QR decoder
This is QR decoder on base [this QR-decoder](https://github.com/khanamiryan/php-qrcode-detector-decoder)
with function of precompression.Example console command for precompression for directory:
`./bin/console.php --path data/good_data/ --compress="yes"`
Example console command for precompression for separate file:
`./bin/console.php --path data/good_data/check_1.jpg --compress="yes"`
Example Using without console command```php
getResults($compressFlag);
var_dump($results); //output decoding results
```