Skip to main content

A fork of zbarlight, which includes a vendored copy of zbar compiled with optimization flags

Project description

fastzbarlight is a fork of zbarlight which ships with its own vendored libzbar, which it compiles with optimization flags to make it faster than the stock Ubuntu version. Try out the simple “trial.py” benchmark in this repository:

` $ python trial.py Average call time with zbarlight: 2.0961521719982557ms (1000 tries) Average call time with fastzbarlight: 0.7335694559988042ms (1000 tries) `

ZbarLight

zbarlight is a simple wrapper for the zbar library. For now, it only allows to read QR codes but contributions, suggestions and pull requests are welcome.

zbarlight is compatible with Python 2 and Python 3.

zbarlight is hosted on Github at <https://github.com/Polyconseil/zbarlight/>.

Installation

You need to install ZBar Bar Code Reader <http://zbar.sourceforge.net/> and its headers to use zbarlight:

  • on Debian, apt-get install libzbar0 libzbar-dev

  • on Mac OS X, brew install zbar

Then you should use pip or setuptools to install the zbarlight wrapper.

How To use ZbarLight

The new way:

from PIL import Image
import zbarlight

file_path = './tests/fixtures/two_qr_codes.png'
with open(file_path, 'rb') as image_file:
    image = Image.open(image_file)
    image.load()

codes = zbarlight.scan_codes('qrcode', image)
print('QR codes: %s' % codes)

The deprecated way:

from PIL import Image
import zbarlight

file_path = './tests/fixtures/one_qr_code.png'
with open(file_path, 'rb') as image_file:
    image = Image.open(image_file)
    image.load()
converted_image = image.convert('L')  # Convert image to gray scale (8 bits per pixel).
image.close()

raw = converted_image.tobytes()  # Get image data.
width, height = converted_image.size  # Get image size.
code = zbarlight.qr_code_scanner(raw, width, height)

print('QR code: %s' % code.decode())

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

fastzbarlight-0.0.14.tar.gz (728.4 kB view details)

Uploaded Source

File details

Details for the file fastzbarlight-0.0.14.tar.gz.

File metadata

File hashes

Hashes for fastzbarlight-0.0.14.tar.gz
Algorithm Hash digest
SHA256 d420b0049ef3cde54633aa6a37d4f4607f11802c72ba6646f5fb376f198165b9
MD5 e4a86191b10456456eced90d7b2f63eb
BLAKE2b-256 2bf6b46fe453ab12ac08c6a15808d402963819f26d4bd9daa5a899f6a3bae22d

See more details on using hashes here.

Provenance

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