| Author |
|
| Company |
Aspose Pty Ltd |
| Source Code Available |
No |
| License Type |
Free to try |
| Submitted On |
October 19, 2010 |
| Updated on |
November 05, 2010 |
| .NET Framework |
1.x, 2.0, 3.5 |
| Cost |
$599 |
Description
Aspose.BarCode is a .NET component for generation and recognition of Linear and 2D barcodes on all kinds of .NET applications. It supports WPF with 29+ Barcode symbologies like OneCode, QR, Aztec, MSI, EAN128, EAN14, SSCC18, Code128, Code39, Postnet, MarcoPDF417, Datamatrix, UPCA etc. Other features include barcode insertion in PDF, Word and Excel documents. Also take image output in BMP, GIF, JPEG, PNG and WMF formats. You can also control image styles such as background color, bar color etc.
Supporting a Plethora of Symbologies
Aspose.BarCode for .NET includes support for a large number of barcode symbologies. The numeric only symbologies supported by Aspose.BarCode for .NET include:
- EAN13
- EAN8
- UPCA
- UPCE
- BooklandEAN
- Interleaved2of5
- Standard2of5
- MSI
- Code11
- Codabar
- Postnet
- Planet
- EAN14(SCC14)
- SSCC18
- ITF14
- USPS OneCode
- Australia Post
The following alpha-numeric symbologies are also supported:
- Code128
- EAN128
- Code39 Extended
- Code39 Standard
- Code93 Extended
- Code93 Standard
As well as these 2D symbologies:
- PDF417
- MacroPDF417
- DataMatrix
- Aztec
- QR
Advanced Imaging Options
Aspose.BarCode for .NET allows you to easily manipulate barcode image borders, border color, style, margins & width etc as well as allowing you to modify image color, back color and bar color. You can also rotate barcode images to any degrees and produce high quality barcode images with anti-aliasing. In addition to this, barcode image margins can be managed and you can set customized resolution.
Syntax Example
Two dimensional barcode can contain more data per label, up to thousands of characters. Large amounts of text and data can be stored securely and inexpensively when using Aspose.BarCode to encode.
How to Create Two Dimensional (2D) Barcodes
Aspose.BarCode.BarCodeBuilder supports both one dimensional and two dimensional barcodes. It encapsulate both types of barcode into one unified interface. Creating two dimensional barcodes is just the same as creating one dimensional barcodes.
[C#]
Aspose.BarCode.BarCodeBuilder b;
b = new Aspose.BarCode.BarCodeBuilder();
b.SymbologyType = Aspose.BarCode.Symbology.Pdf417;
// width of each module
b.xDimension = 0.6f;
// height of each module
b.yDimension = 1.2f;
b.CodeText = "this is some test code text. \n Second line \n third line.";
b.Save(@"c:\test_pdf417.bmp", ImageFormat.Bmp);
[VB.NET]
Dim b As Aspose.BarCode.BarCodeBuilder
b = New Aspose.BarCode.BarCodeBuilder()
b.SymbologyType = Aspose.BarCode.Symbology.Pdf417
' width of each module
b.xDimension = 0.6F
' height of each module
b.yDimension = 1.2F
b.CodeText = "this is some test code text. " _
& vbNewLine _ & "Second line" _
& vbNewLine & "third line."
b.Save("c:\test_pdf417.bmp", ImageFormat.Bmp)Screenshots
Reviews
Submit a review