Browse our Products Toggle navigation
If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
Looking to process barcodes on the .NET platform? Utilize the advanced features in Aspose.BarCode for .NET 24.7 (MSI) to empower your applications with .NET 8 compatibility and barcode and QR code generation and recognition features.
Seamlessly integrate barcode generation and recognition capabilities to your .NET 8 projects using this release of the .NET barcode processing API.
Aspose.BarCode for .NET now offers flawless QR code recognition by augmenting the HighQuality preset. Developers can read QR codes with greater precision owing to this update, as showcased in the following code example.
HighQuality
using (BarCodeReader reader = new BarCodeReader("qr.jpg", DecodeType.QR)) { reader.QualitySettings = QualitySettings.HighQuality; foreach (BarCodeResult result in reader.ReadBarCodes()) Console.WriteLine(result.CodeText); }
Source*
Create compliant Australia Post barcodes with the optimized AustralianPostShortBarHeight parameter added to the latest C# barcode library version. Check out the following coding sample to learn how to use this functionality in C#.
AustralianPostShortBarHeight
BarcodeGenerator gen = new BarcodeGenerator(EncodeTypes.AustraliaPost, "6212345678AP"); gen.Parameters.Barcode.AustralianPost.AustralianPostEncodingTable = CustomerInformationInterpretingType.CTable; gen.Parameters.Barcode.BarHeight.Pixels = 100; gen.Parameters.Barcode.AustralianPost.AustralianPostShortBarHeight.Pixels = 10; gen.Parameters.Barcode.Padding.Left.Pixels = 10; gen.Parameters.Barcode.Padding.Top.Pixels = 10; gen.Parameters.Barcode.Padding.Right.Pixels = 10; gen.Parameters.Barcode.Padding.Bottom.Pixels = 10; gen.Save("AustraliaPost.png", BarCodeImageFormat.Png);
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.BarCode for .NET 24.7 Release Notes.