Decode Australian Post Code | C#ByteScout Barcode Reader SDK

Decode Australian Post Code | C#

Program.cs:

C#
using System;
using System.IO;

using Bytescout.BarCodeReader;

namespace AustralianPostCode
{
    class Program
    {
        const string ImageFile = @".\australianpostcode.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";

            /* -----------------------------------------------------------------------
            NOTE: We can read barcodes from specific page to increase performance .
            For sample please refer to "Decoding barcodes from PDF by pages" program.
            ----------------------------------------------------------------------- */

            // Set barcode type to find
            reader.BarcodeTypesToFind.AustralianPostCode = true;

            // 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();
        }
    }
}