• Stars
    star
    385
  • Rank 109,165 (Top 3 %)
  • Language
    C
  • Created almost 15 years ago
  • Updated over 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

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

Simple extension to read barcodes from images

Build Status

Upgrade at 2018-12-05

Support PHP7, And fix some bug that may cause crash.

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://en.wikipedia.org/wiki/File:Ean-13-5901234123457.png

Dependencies:

ZBar http://zbar.sourceforge.net/

ImageMagick http://www.imagemagick.org/