Barcode Generation & Scanning Library for Python
Product Page | Docs | Demos | API Reference | Examples | Blog | Free Support | Temporary License
Aspose.BarCode for Python via .NET is a barcode Python library for barcode generation and scanning to be used in a Python application. The barcode library allows fine-tuning of barcode appearance aspects like barcode size, captions, alignment, colors, font and its size. The library supports wide range of scanning presets for optimal trade-off between recognition speed and quality.
What is Aspose.BarCode for Python via .NET?
Aspose.BarCode for Python via .NET supports more tan 40 different barcode symbologies. Aspose.BarCode for Python via .NET supports various file formats such as JPEG, SVG, PNG, EMF, etc. You can generate high-quality numeric, alpha-numeric and 2D barcodes, also you can tune the appearance of the generated barcodes such as codetext, captions, dimensions, aspect ratio, and more.
Aspose.BarCode for Python via .NET also assists you in barcode scanning in an efficient manner via internal multi-threading. It can recognize barcode symbologies and fetch the encoded text. You can also detect several symbologies present in a single picture or perform barcode recognition on a page with mixed text and images.
Barcode Generation Features
- Generate barcode images programmatically.
- Create a 'QR' and 'MicroQR' Barcode, set error correction level, and encoding mode.
- Create Datamatrix barcodes with default or custom encoding mode.
- Enable checksum for the barcodes of applicable symbologies.
- Supports error correction for various types of barcodes.
- Adjust image size of 2D barcodes and set aspect ratio.
- Enable image border, modify barcode image border width and style.
- Detect Unicode encoding of barcodes.
- Hide codetext that is too long or reduce the font size of codetext.
- Codetext can be set as per the associated symbology type and the outbound part is truncated.
- Colorize barcode, code text, barcode background, barcode border, and caption.
- Specify size unit for the barcode image in document, inch, millimeter, pixel, and point.
- Lots of other barcode processing features.
Supported Symbologies for Barcode Generation & Recognition
- BarCode Supplement
- BooklandEAN
- Codabar
- Code11
- Code128
- Code39 Extended
- Code39 Standard
- Code93 Extended
- Code93 Standard
- Datamatrix
- Deutsche Post Identcode
- EAN128
- EAN13
- EAN14(SCC14)
- EAN8
- Interleaved2of5
- ITF14
- Matrix 2 of 5
- MSI
- PDF417
- Planet
- Postnet
- PZN (Pharma Zentral Nummer, Pharmazentralnummer barcode)
- QR
- Han Xin
- SSCC18
- Standard2of5
- UPCA
- UPCE
Supported Symbologies for Barcode Generation Only
Read & Write Barcode Labels
JPEG, TIFF, PNG, BMP, GIF
Save Barcode Labels As
EMF, SVG
Generate QR Barcode in PNG Format
You can execute the below code snippet to see how Aspose.BarCode API works in your development environment. You may also check the GitHub Repository for other common usage scenarios.
from aspose.barcode import generation
gen = generation.BarcodeGenerator(generation.EncodeTypes.QR, "ASPOSE")
gen.save("output.png", generation.BarCodeImageFormat.PNG)
Hide Barcode Label Text using Python
You can customize properities of generated barcode with Aspose.BarCode for Python via .NET. The following example shows how to hide the barcode text using Python:
from aspose.barcode import generation
gen = generation.BarcodeGenerator(generation.EncodeTypes.DATA_MATRIX, "ASPOSE")
gen.parameters.barcode.code_text_parameters.location = generation.CodeLocation.NONE
gen.save("output.png", generation.BarCodeImageFormat.PNG)
Product Page | Docs | Demos | API Reference | Examples | Blog | Free Support | Temporary License