Program.cs
using System; using System.IO; using Bytescout.BarCodeReader; namespace ReadPatchCode { class Program { const string ImageFile = "PatchCode.png"; static void Main() { Console.WriteLine("Reading barcode(s) from image {0}", Path.GetFullPath(ImageFile)); Reader reader = new Reader(); reader.RegistrationName = "demo"; reader.RegistrationKey = "demo"; // Set barcode type to find reader.BarcodeTypesToFind.PatchCode = true; // Add vertical orientations to analysis reader.Orientation = OrientationType.Default | OrientationType.VerticalFromBottomToTop | OrientationType.VerticalFromTopToBottom; // Read barcodes FoundBarcode[] barcodes = reader.ReadFrom(ImageFile); foreach (FoundBarcode barcode in barcodes) { Console.WriteLine("Found barcode with type '{0}' and value '{1}'", barcode.Type, barcode.Value); } // Cleanup reader.Dispose(); Console.WriteLine("Press any key to exit.."); Console.ReadKey(); } } }