Skip to main content

zbar package

Project description

Introduction

Author: Zachary Pincus zpincus@gmail.com

Contributions: Rounak Singh rounaksingh17@gmail.com (example code and zbar.misc).

zbar-py is a module (compatible with both Python 2.7 and 3+) that provides an interface to the zbar bar-code reading library, which can read most barcode formats as well as QR codes. Input images must be 2D numpy arrays of type uint8 (i.e. 2D greyscale images).

The zbar library itself packaged along with zbar-py (it’s built as a python extension), so no external dependencies are required. Building zbar requires the iconv library to be present, which you almost certainly have, except if you’re on windows. Then you probably will need to download or build the iconv DLL. Here are pre-built 32- and 64-bit binaries for same.

The python code is under the MIT license, and zbar itself is licensed under the GNU LGPL version 2.1.

Prerequisites:

  • iconv – c library required for building zbar-py; see above

  • numpy – for running zbar-py

  • pygame – for examples using a webcam

Simple examples:

More sophisticated examples can be found in ‘examples’ directory.

  • Scan for barcodes in a 2D numpy array:

import zbar
image = read_image_into_numpy_array(...) # whatever function you use to read an image file into a numpy array
scanner = zbar.Scanner()
results = scanner.scan(image)
for result in results:
    print(result.type, result.data, result.quality, result.position)
  • Scan for UPC-A barcodes and perform checksum validity test:

import zbar
import zbar.misc
image = read_image_into_numpy_array(...) # get an image into a numpy array
scanner = zbar.Scanner()
results = scanner.scan(image)
for result in results:
    if result.type == 'UPC-A':
        print(result.data, zbar.misc.upca_is_valid(result.data.decode('ascii')))

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

zbar-py-1.0.4.tar.gz (543.9 kB view details)

Uploaded Source

File details

Details for the file zbar-py-1.0.4.tar.gz.

File metadata

  • Download URL: zbar-py-1.0.4.tar.gz
  • Upload date:
  • Size: 543.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for zbar-py-1.0.4.tar.gz
Algorithm Hash digest
SHA256 8f90fa36480f50109a8555a3e4debed69f70d8085545fd413190ae21a1455466
MD5 4183d8af0e13f16190583fb82f60e3f8
BLAKE2b-256 91ba5f16696d44c69df1d6a890adc60211183d2da90e8de4282d29d1475aba68

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page