Skip to content

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

Notifications You must be signed in to change notification settings

lengai/php-zbarcode

 
 

Repository files navigation

Simple extension to read barcodes from images

Basic usage:

<?php
/* Create new image object */
$image = new ZBarCodeImage("test.jpg");

/* Create a barcode scanner */
$scanner = new ZBarCodeScanner();

/* Scan the image */
$barcode = $scanner->scan($image);

/* Loop through possible barcodes */
if (!empty($barcode)) {
	foreach ($barcode as $code) {
		printf("Found type %s barcode with data %s\n", $code['type'], $code['data']);
	}
}
?>

The EAN13 image in the tests/ directory is from http:https://en.wikipedia.org/wiki/File:Ean-13-5901234123457.png

Dependencies:

ZBar http:https://zbar.sourceforge.net/

ImageMagick http:https://www.imagemagick.org/

About

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 69.7%
  • M4 18.5%
  • PHP 11.8%