codeawn/zxingdecoder

使用 ZXing Decoder 在线读取条形码

此软件包的规范存储库似乎已消失,因此该软件包已被冻结。

1.0.0 2017-08-26 22:59 UTC

This package is auto-updated.

Last update: 2021-01-27 12:29:50 UTC


README

使用 ZXing Decoder 在线 读取条形码

安装与使用

使用 composer 安装: composer require codeawn/zxingdecoder

$decoder = new Codeawn\ZxingDecoder;
$result = $decoder->fromFile("barcoder-example.png"); // decode from file
$result = $decoder->fromUrl("http://example.com/barcode.png"); // decode from url

示例结果

Array
(
    [status] => Decode Succeeded
    [Rawtext] => 123ABC
    [Rawbytes] => (Not applicable)
    [Barcodeformat] => CODE_39
    [ParsedResultType] => TEXT
    [ParsedResult] => 123ABC
)