Aspose.BarCode for .NET is a robust and reliable barcode generation and recognition component, written in managed C#, it allows developers to quickly and easily add barcode generation and recognition functionality to their Microsoft .NET applications (WinForms, WPF and .NET Core). Aspose.BarCode for .NET supports most established barcode standards and barcode specifications. It has the ability to export to multiple image formats including: BMP, GIF, JPEG, PNG, TIFF, EMF and SVG.
$ dotnet add package Aspose.BarCodeHome | Product Page | Docs | Demos | API Reference | Examples | Blog | Free Support | Temporary License
Aspose.BarCode for .NET doesn't just create or recognize barcodes but it provides a complete framework to control almost everything about barcodes. Developers can customize the barcode's appearance like bar height, colors, margins, borders, row/columns count and interpolation modes, as well as barcode generation properties like symbol mode encodings, error correction modes, ECI modes or special barcode metadata. While scanning for barcodes, developers can specify the area/areas where a barcode can be found. Moreover, scanning engine can be optimized for better barcode reading quality or speed with variety of options, which allows to recognize strongly corrupted barcodes.
The following symbologies are supported for generation and recognition by Aspose.BarCode engine:
1D: Codabar, Code 11, Code 93 Standard, Code 93 Extended, Code 128, EAN8, EAN13, EAN14, SCC14, SSCC18, UPC-A, UPC-E, ISBN, ISSN, ISMN, Standard 2-of-5, Interleaved 2-of-5, Matrix 2-of-5, IATA 2-of-5, ITF-14, ITF-6, MSI, VIN, OPC, PZN, Code16K, Pharmacode, PatchCode, Code 32, Data Logic 2-of-5, Codablock-F, DatabarOmniDirectional, DatabarTruncated, DatabarLimited, DatabarExpanded, DatabarExpandedStacked, DatabarStacked, DatabarStackedOmniDirectional, EAN-2, EAN-5
2D: Data Matrix, QR Code, Micro QR Code, Aztec Code, PDF417, Macro PDF417, Micro PDF417, Compact PDF, MaxiCode, DotCode, Mailmark 2D, Swiss QR Code, Han Xin
Postal: AustraliaPost, Postnet, Planet, OneCode, RM4SCC, Mailmark, SingaporePost, DutchKIX, DeutschePostIdentcode, DeutschePostLeitcode, ItalianPost25, AustralianPosteParcel, SwissPostParcel,
GS1: GS1 Code 128, UpcaGs1Code128Coupon, UpcaGs1DatabarCoupon, GS1 Codablock-F, GS1 Data Matrix, GS1 QR Code, GS1 DotCode, GS1 Composite Bar
HIBC: HIBC Code 39 LIC, HIBC Code 128 LIC, HIBC Code 39 PAS, HIBC Code 128 PAS, HIBC Aztec Code LIC, HIBC Data Matrix LIC, HIBC QR Code LIC, HIBC Aztec Code PAS, HIBC Data Matrix PAS, HIBC QR Code PAS
Images: JPEG, TIFF, PNG, BMP, GIF, EXIF
Images: EMF, SVG
Aspose.BarCode for .NET can easily be used in any .NET 32-bit or 64-bit application, including, .Net Framework, .Net Core, ASP.NET, .Net MAUI, Mono, Xamarin, WinForms, WPF and UWP. In short, you can develop apps using Aspose.BarCode for .NET where the .NET framework or .Net Core are available.
Are you ready to give Aspose.BarCode for .NET a try? Simply add Aspose.BarCode to your project references as Nuget package. If you have some difficulties with this, our examples help you to manage with this.
Try the following snippet to see how Aspose.BarCode API performs in your environment or check the GitHub Repository for other common usage scenarios.
// instantiate object and set different barcode properties
BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.Code128, "1234567");
generator.Parameters.Barcode.XDimension.Millimeters = 1f;
// save the image to your system and set its image format to Png
generator.Save(dir + "output.png", BarCodeImageFormat.Png);Aspose.BarCode for .NET allows you to customize various properties of barcodes, such as borders, color, type, bar height as well as barcode text. The following example shows, how simple it is to hide the barcode text using C#.
string codeText = "This text is hidden.\n" + "This text is hidden.\n";;
// instantiate barcode object and set CodeText, Symbology , and CodeLocation
BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.DataMatrix, codeText);
generator.Parameters.Barcode.CodeTextParameters.Location = CodeLocation.None;
generator.Save(dir + "output.png", BarCodeImageFormat.Png);The following example demonstrates how to scan a picture of a barcode image using Aspose.BarCode
// Read file from directory with DecodeType.EAN13
using (BarCodeReader reader = new BarCodeReader(dataDir + "Scan.jpg", DecodeType.EAN13))
{
foreach (BarCodeResult result in reader.ReadBarCodes())
{
// Read symbology type and code text
Console.WriteLine("Symbology Type: " + result.CodeType);
Console.WriteLine("CodeText: " + result.CodeText);
}
}Home | Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Temporary License