All the benefits of the Softek Barcode Reader Toolkit in a NuGet package for .NET developers
Download from Nuget.
Get a free 30-day license key from sales@softeksoftware.co.uk
Add barcode recognition to your .NET app’s with our .Net Standard 2.0 interface with seamless native support for Windows, OSX and Linux on either Intel or ARM. Available as a Nuget package
After adding the NuGet package to your app just add something similar to the following lines of code:
SoftekBarcodeNetStandard.BarcodeReader barcode = new SoftekBarcodeNetStandard.BarcodeReader();
barcode.LicenseKey = “set your license key here”;
barcode.ReadDataMatrix = false;
barcode.ReadQRCode = true;
barcode.ReadCode128 = true;
int n = barcode.ScanBarCode(“image.pdf”);
for (int i = 1; i <= n; i++)
{
Console.WriteLine(“Value: ” + barcode.GetBarString(i).ToString());
Console.WriteLine(“Type: ” + barcode.GetBarStringType(i).ToString());
Console.WriteLine(“Page: ” + barcode.GetBarStringPage(i).ToString());
}