Read 50 datamatrix barcodes from picture - C#
BarCode Reader SDK sample in C# demonstrating ‘Read 50 datamatrix barcodes from picture’
Program.cs
using System;
using Bytescout.BarCodeReader;
namespace Read50DataMatrixBarcocesFromPicture
{
class Program
{
static void Main(string[] args)
{
try
{
// Create and activate Bytescout.BarCodeReader.Reader instance
using (Reader reader = new Reader("demo", "demo"))
{
// Set barcode type to find
reader.BarcodeTypesToFind.DataMatrix = true;
/* -----------------------------------------------------------------------
NOTE: We can read barcodes from specific page to increase performance.
For sample please refer to "Decoding barcodes from PDF by pages" program.
----------------------------------------------------------------------- */
// Read barcodes
FoundBarcode[] barcodes = reader.ReadFrom("50_DataMatrix.png");
foreach (FoundBarcode code in barcodes)
Console.WriteLine("Found barcode value: '{1}'", code.Type, code.Value);
}
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
Console.WriteLine();
Console.WriteLine("Press any key to exit...");
Console.ReadLine();
}
}
}