zbar-windows/python
Javier Serrano Polo 0583b85093 Apply jasp-01-sqcode.patch
Add support for SQ code, a simple 2D barcode. zbarimg works with images
without noise elements. Language bindings have not been tested.

Signed-off-by: Javier Serrano Polo <javier@jasp.net>
2019-02-02 18:07:15 +01:00
..
examples python: Make it work with modern versions of python 2 2018-08-07 16:12:54 -03:00
test python: Make it work with modern versions of python 2 2018-08-07 16:12:54 -03:00
decoder.c Update to the very latest version of zbar 2017-03-25 23:04:38 -03:00
enum.c Update to the very latest version of zbar 2017-03-25 23:04:38 -03:00
exception.c * fixup some perl distribution details 2009-04-17 22:26:38 +00:00
image.c Update to the very latest version of zbar 2017-03-25 23:04:38 -03:00
imagescanner.c Fix a bug at python/imagescanner.c 2017-04-11 12:00:22 -03:00
Makefile.am.inc Update to the very latest version of zbar 2017-03-25 23:04:38 -03:00
MANIFEST.in Update to the very latest version of zbar 2017-03-25 23:04:38 -03:00
processor.c Update to the very latest version of zbar 2017-03-25 23:04:38 -03:00
README Update to the very latest version of zbar 2017-03-25 23:04:38 -03:00
scanner.c * fixup some perl distribution details 2009-04-17 22:26:38 +00:00
setup.py Be sure to use python 2 2018-08-08 07:25:27 -03:00
symbol.c Update to the very latest version of zbar 2017-03-25 23:04:38 -03:00
symboliter.c extract explicit result container, separate from image 2009-09-24 11:35:22 -04:00
symbolset.c extract explicit result container, separate from image 2009-09-24 11:35:22 -04:00
zbarmodule.c Apply jasp-01-sqcode.patch 2019-02-02 18:07:15 +01:00
zbarmodule.h Update to the very latest version of zbar 2017-03-25 23:04:38 -03:00

==========================================
zbar -- read barcodes from images or video
==========================================

ZBar Bar Code Reader is an open source software suite for reading bar
codes from various sources, such as video streams, image files and raw
intensity sensors. It supports EAN-13/UPC-A, UPC-E, EAN-8, Code 128,
Code 93, Code 39, Codabar, Interleaved 2 of 5 and QR Code.  These are
the Python bindings for the library.

Check the ZBar project home page for the latest release, mailing
lists, etc.

* http://zbar.sourceforge.net/

Installation
------------

To install this module type the following::

   python setup.py install

Dependencies
------------

This module requires the ZBar Bar Code Reader, which may be obtained
from:

* http://zbar.sourceforge.net/

Windows users please note: the module *will NOT load* unless the ZBar
library DLL (currently libzbar-0.dll) is available in your Windows system
PATH!

Examples
--------

To scan an image, wrap the raw image data in a ``zbar.Image`` and feed
it to a ``zbar.ImageScanner``::

    import zbar
    scanner = zbar.ImageScanner()
    image = zbar.Image(width, height, 'Y800', raw_data)
    scanner.scan(image)
    for symbol in image:
        print 'decoded', symbol.type, 'symbol', '"%s"' % symbol.data

Complete, runnable examples may be found in the source distribution,
under the ``examples/`` directory.  A couple of HOWTOs_ that cover
programming with the library may be found on the project wiki.

.. _HOWTOs: http://sourceforge.net/apps/mediawiki/zbar/index.php?title=Category:HOWTOs

Copyright and License
---------------------

Licensed under the GNU Lesser General Public License, version 2.1.
http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt

Copyright 2008-2010 (c) Jeff Brown <spadix@users.sourceforge.net>