Read Barcode with ZXing Decoder Online.
Installation & Usage
install with 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
example result :
Array
(
[status] => Decode Succeeded
[Rawtext] => 123ABC
[Rawbytes] => (Not applicable)
[Barcodeformat] => CODE_39
[ParsedResultType] => TEXT
[ParsedResult] => 123ABC
)