https://github.com/bindreams/zint-bindings
A barcode encoding library supporting over 50 symbologies.
https://github.com/bindreams/zint-bindings
aztec barcode-generator c128 c93 code128 datamatrix ean generator gs1 maxicode microqrcode pdf417 qrcode rmqrcode
Last synced: about 2 months ago
JSON representation
A barcode encoding library supporting over 50 symbologies.
- Host: GitHub
- URL: https://github.com/bindreams/zint-bindings
- Owner: bindreams
- License: apache-2.0
- Created: 2024-04-14T13:12:04.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-22T18:54:07.000Z (6 months ago)
- Last Synced: 2025-02-24T02:40:39.730Z (3 months ago)
- Topics: aztec, barcode-generator, c128, c93, code128, datamatrix, ean, generator, gs1, maxicode, microqrcode, pdf417, qrcode, rmqrcode
- Language: Python
- Homepage: https://zint-bindings.readthedocs.io
- Size: 7.18 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Zint Bindings
This project provides Python bindings for [Zint](https://www.zint.org.uk/): a cross-platform open source barcode generating solution.Features:
- 50+ barcode types;
- Text or binary data encoding;
- Export image to:
- PNG;
- BMP;
- GIF;
- PCX;
- TIF;
- EMF;
- EPS;
- SVG;
- Configurable options:
- Size;
- Color;
- Error correction;
- Rotation;
- ...and much more depending on the barcode type.```python
>>> from zint import Symbol, Symbology
>>> x = Symbol()
>>> x.symbology = Symbology.QRCODE
>>> x.encode("https://github.com/bindreams/zint-bindings")
>>> x.outfile = "qrcode.png"
>>> x.print() # All done!```
Install the package with:
```sh
pip install zint-bindings
```
Detailed instructions and usage examples are available in the [official documentation](https://zint-bindings.readthedocs.io/en/stable/getting-started.html).## License
Copyright 2024, Anna Zhukova
This project is licensed under the Apache 2.0 license. The license text can be found at [LICENSE.md](/LICENSE.md).
These bindings are based on the API portion of the Zint project, which is licensed under the BSD 3-clause license. See more information at [src/zint/external/zint/LICENSE](/src/zint/external/zint/LICENSE).