All the benefits of the Softek Barcode Reader Toolkit
Download from Nuget.
Get a free 30-day license key from sales@softeksoftware.co.uk
**PDF files supported through configurable external call to a conversion tool such as gs. PDF files cannot be split in this product.
Add barcode recognition to your Docker app’s with our .Net Standard interface with seamless native support for Windows, OSX and Linux on either Intel or ARM. Available as a Nuget package it’s never been simpler to add barcode recognition to your app.
After adding the Nuget package to your app just add the following lines of code:
SoftekBarcodeNetStandard.BarcodeReader barcode = new SoftekBarcodeNetStandard.BarcodeReader();
barcode.LicenseKey = “Get a license key from sales@bardecode.com”;
// Turn on some barcopde types
barcode.ReadQRCode = true;
// Set the path to the gs command for PDF files
barcode.gsPath = “/path/to/gs”;
int n = barcode.ScanBarCode(@”myfile.jpg”);
for (int i = 1; i <= n; i++)
{
string barcode = barcode.GetBarString(i);
}