Aspose.BarCode Recognize Micro Application is reliable barcode recognition CLI tool, written in managed C#, it allows to quickly and easily recognize barcodes of various types. Aspose.BarCode Recognize supports most established barcode standards and barcode specifications. It has the ability to work with multiple image formats including: BMP, GIF, JPEG, PNG, TIFF.
$ dotnet add package Aspose.BarCode.RecognizeAspose.BarCode Micro Applications provide high-accuracy barcode generation and recognition for end-users.
Powered by the Aspose.BarCode .NET API.
The Aspose.BarCode Recognize Micro Application allows you to recognize barcodes from various image formats, supporting over 60 different symbologies.
Documentation | API Reference | Purchase
Supports various input image formats as per the Aspose.BarCode supported file formats list.
Recognizes over 60 barcode symbologies including QR, Code128, PDF417, and more. See https://docs.aspose.com/barcode/net/barcode-types/ for the full list of supported barcode types.
High accuracy and performance in barcode recognition.
Easy integration with command line and .NET8 compatible API for use in your C# projects.
Detailed logging and error handling capabilities.
Customizable recognition settings including quality adjustment and output format options.
Although the Aspose.BarCode Recognize application is free, Aspose.BarCode .NET is licensed as usual. You can use your existing license with the application or evaluate it in trial mode. To request a temporary license, please visit Aspose's temporary license request page.
.NET8 on Windows, Linux, MacOS
Aspose.BarCode Recognize application installed
To install the tool, use the following command:
dotnet tool install --global Aspose.BarCode.Recognize
If you've already installed the application - update supported via the command:
dotnet tool update --global Aspose.BarCode.Recognize --version 24.7.0Use from command line:
Aspose.BarCode.Recognize --input qr.png --output res.csvUse from code: To add required references to your project please issue command
Aspose.BarCode.Recognize add -p YourProjectFoldersetting YourProjectFolder to the real value or simply run it from the project folder.
var options = new BarcodeRecognizeOptions()
{
InputImage = "qr.png",
Output = "res.csv",
OutputFormat = "csv",
Quality = "normal",
LicenseFile = "Aspose.Total.Product.Family.lic"
};
await RecognizeTask.Create(options).Execute();