-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
initial commit - copy of zbar from https://pypi.python.org/pypi/zbar/…
…0.10 download
- Loading branch information
Showing
22 changed files
with
3,204 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MANIFEST | ||
MANIFEST.in | ||
README | ||
decoder.c | ||
enum.c | ||
exception.c | ||
image.c | ||
imagescanner.c | ||
processor.c | ||
scanner.c | ||
setup.py | ||
symbol.c | ||
symboliter.c | ||
symbolset.c | ||
zbarmodule.c | ||
zbarmodule.h | ||
examples/processor.py | ||
examples/read_one.py | ||
examples/scan_image.py | ||
test/barcode.png | ||
test/test_zbar.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
include MANIFEST MANIFEST.in zbarmodule.h test/barcode.png | ||
recursive-include examples *.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
Metadata-Version: 1.0 | ||
Name: zbar | ||
Version: 0.10 | ||
Summary: read barcodes from images or video | ||
Home-page: http://zbar.sourceforge.net | ||
Author: Jeff Brown | ||
Author-email: spadix@users.sourceforge.net | ||
License: LGPL | ||
Description: ========================================== | ||
zbar -- read barcodes from images or video | ||
========================================== | ||
|
||
The ZBar Bar Code Reader is a library for scanning and decoding bar | ||
codes from various sources such as video streams, image files or raw | ||
intensity sensors. It supports EAN, UPC, Code 128, Code 39 and | ||
Interleaved 2 of 5. 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/ | ||
|
||
Examples | ||
-------- | ||
|
||
TBD | ||
|
||
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-2009 (c) Jeff Brown <spadix@users.sourceforge.net> | ||
|
||
Platform: UNKNOWN | ||
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL) | ||
Classifier: Development Status :: 4 - Beta | ||
Classifier: Intended Audience :: Developers | ||
Classifier: Environment :: Console | ||
Classifier: Environment :: X11 Applications | ||
Classifier: Environment :: Win32 (MS Windows) | ||
Classifier: Operating System :: POSIX | ||
Classifier: Operating System :: Unix | ||
Classifier: Operating System :: Microsoft :: Windows | ||
Classifier: Topic :: Communications | ||
Classifier: Topic :: Multimedia :: Graphics | ||
Classifier: Topic :: Software Development :: Libraries |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
========================================== | ||
zbar -- read barcodes from images or video | ||
========================================== | ||
|
||
The ZBar Bar Code Reader is a library for scanning and decoding bar | ||
codes from various sources such as video streams, image files or raw | ||
intensity sensors. It supports EAN, UPC, Code 128, Code 39 and | ||
Interleaved 2 of 5. 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/ | ||
|
||
Examples | ||
-------- | ||
|
||
TBD | ||
|
||
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-2009 (c) Jeff Brown <spadix@users.sourceforge.net> |
Oops, something went wrong.