Package Data | |
---|---|
Maintainer Username: | robbiepaul |
Maintainer Contact: | robbiepaul@me.com (Robbie Paul) |
Package Create Date: | 2014-12-01 |
Package Last Update: | 2021-08-26 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-14 15:07:23 |
Package Statistics | |
---|---|
Total Downloads: | 44,238 |
Monthly Downloads: | 408 |
Daily Downloads: | 31 |
Total Stars: | 32 |
Total Watchers: | 4 |
Total Forks: | 38 |
Total Open Issues: | 8 |
This is a PHP wrapper for zbar-tools
- (only zbarimg
at the moment). See http://zbar.sourceforge.net/.
sudo apt-get install zbar-tools
. See their project page for more platforms.Install this package through Composer.
Add this to your composer.json
dependencies:
"require": {
"robbiep/zbar-qrdecoder": "^2.0"
}
Run composer install
to download the required files.
require_once('vendor/autoload.php');
$ZbarDecoder = new RobbieP\ZbarQrdecoder\ZbarDecoder();
# Optionally change the path of the zbarimg executable if you need to (default: /usr/bin)
$ZbarDecoder->setPath('/usr/local/bin');
# Decode the image
$result = $ZbarDecoder->make('/a/path/to/image_with_barcode.jpg');
echo $result; // Outputs the decoded text
echo $result->format; // Outputs the barcode's format
echo $result->code; // 200 if it decoded a barcode OR 400 if it couldn't find a barcode.
I've included a ServiceProvider class and a config if you need to change any options. Yyou need to add the ServiceProvider to config/app.php
'providers' => array(
...
'RobbieP\ZbarQrdecoder\ZbarQrdecoderServiceProvider'
)
You may need to publish the config php artisan vendor:publish
Now you can use Zbar QR Decoder in your Laravel application!
# Decode the image
$result = ZbarDecoder::make('/a/path/to/image_with_barcode.png');
echo $result; // Outputs the decoded text
echo $result->format; // Outputs the barcode's format
git checkout -b my-new-feature
git commit -am 'Add some feature'
git push origin my-new-feature