php-zbarcode icon indicating copy to clipboard operation
php-zbarcode copied to clipboard

PHP extension for reading barcodes. Uses ImageMagick(http://www.imagemagick.org/) for image support and zbar(http://zbar.sourceforge.net/) for scanning the barcodes.

Results 24 php-zbarcode issues
Sort by recently updated
recently updated
newest added

Hey there, could you add official releases to your repo? There was an issue over at the sury repo (https://github.com/oerdnj/deb.sury.org/issues/981) which suggested that he might be willing to host the...

Hi I am getting this error on PHP 5.4.10 ``` [07-jan-2013 21:10:37] WARNING: [pool php-fpm-1] child 434 said into stderr: "NOTICE: PHP message: PHP Fatal error: Uncaught exception 'zbarcodeexception' with...

I see your documentation is not greate, any steps of installation any instructions to explain how to complile extension for php, any example found to get ZBarCodeImage class, that s...

I have very little free time to maintain this project and this is an open call for a new maintainer. I am open to move this extension under an organisation...

``` /bin/sh /opt/php-zbarcode/libtool --mode=compile cc -fopenmp -I/usr/include/ImageMagick -I. -I/opt/php-zbarcode -DPHP_ATOM_INC -I/opt/php-zbarcode/include -I/opt/php-zbarcode/main -I/opt/php-zbarcode -I/usr/local/php/include/php -I/usr/local/php/include/php/main -I/usr/local/php/include/php/TSRM -I/usr/local/php/include/php/Zend -I/usr/local/php/include/php/ext -I/usr/local/php/include/php/ext/date/lib -I/usr/include/ImageMagick -DHAVE_CONFIG_H -g -O2 -c /opt/php-zbarcode/zbarcode.c -o zbarcode.lo cc -fopenmp -I/usr/include/ImageMagick...

Hello, I am getting the following error while running ./configure checking for zbar.h header... configure: error: Cannot locate zbar.h header. Please check your libzbar installation Can you please let me...

Can someone teach me how to install in windows? I can't find it anywhere? why don't u put int in readme.md? thanks!

``` php function checkQrCode($filename,$mid){ if(false==file_exists($filename)){ return false; } $QRimage = new ZBarCodeImage($filename); $QRscanner = new ZBarCodeScanner(); try{ $barcode = $QRscanner->scan($QRimage); }catch(Exception $e){ $barcode = false; zLog(HT_ERROR,' e = '.$e->getMessage(),__FUNCTION__,__LINE__); }...