Barcode Reader SDK

Using our barcode reader SDK you can enable your application to read barcodes from images with only a few lines of code.

So how do you do it?

1. Add a reference to the SoftekBarcodeNet.dll DotNet component

2. Use code similar to this…

barcode = new SoftekBarcodeNet.BarcodeReader(@”path\to\our\sdk\bin”);
// Set a few properties
barcode.MultipleRead = true; // Scan the whole document for barcodes
barcode.ReadQRCode = true; // Check for QrCodes

int nBarCode = barcode.ScanBarCode(@”\path\to\your\image.pdf”) ;

for (int i = 1; i <= nBarCode; i++)
{
string value = barcode.GetBarString(i);
// Do something with the barcode value
}

Download the SDK and have it working in minutes!

Get your free 30 day license from sales@bardecode.com