php qrcode detector decoder
2.0.2
これは、QR コードを検出してデコードするための PHP ライブラリです。
これは、拡張機能なしで動作する最初で唯一の QR コード リーダーです。
ZXing ライブラリから移植
このライブラリをインストールする推奨方法は、Composer を使用することです。
プロジェクトのルートから次のコマンドを実行します。
$ composer require khanamiryan/qrcode-detector-decoder
require __DIR__ . " /vendor/autoload.php " ;
use Zxing QrReader ;
$ qrcode = new QrReader ( ' path/to_image ' );
$ text = $ qrcode -> text (); //return decoded text from QR Code
機能を追加したり、コードをクリーンアップしたり、コンポーザーなどを追加したりすることで、プロジェクトを支援できます。
git checkout -b my-new-feature
git commit -am 'Add some feature'
git push origin my-new-feature