Link Search Menu Expand Document

Decode Deutsche Post Leitcode - VB.NET

BarCode Reader SDK sample in VB.NET demonstrating ‘Decode Deutsche Post Leitcode’

Module1.vb
Imports System.IO
Imports Bytescout.BarCodeReader

Module Module1

    Sub Main()
        Const imageFile As String = "DeutschePostLeitcode.png"

        Console.WriteLine("Reading barcode(s) from image {0}", Path.GetFullPath(imageFile))

		Dim reader As New Reader()
        reader.RegistrationName = "demo"
		reader.RegistrationKey = "demo"

		' Set barcode type to find
        reader.BarcodeTypesToFind.Interleaved2of5 = True ' "Deutsche Post Leitcode" is subset of "Interleaved 2 of 5" barcode

        ' -----------------------------------------------------------------------
        ' 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
		Dim barcodes As FoundBarcode() = reader.ReadFrom(imageFile)

        For Each barcode As FoundBarcode In barcodes
            Console.WriteLine("Found barcode with type '{0}' and value '{1}'", barcode.Type, barcode.Value)
        Next

        'Cleanup
        reader.Dispose()

        Console.WriteLine("Press any key to exit..")
        Console.ReadKey()

    End Sub

End Module

Download Source Code (.zip)

Return to the previous page Explore BarCode Reader SDK