ByteScout QR Code SDK - VB.NET - Binary Data - ByteScout

ByteScout QR Code SDK – VB.NET – Binary Data

  • Home
  • /
  • Articles
  • /
  • ByteScout QR Code SDK – VB.NET – Binary Data

ByteScout QR Code SDK – VB.NET – Binary Data

Program.vb

Imports System.Diagnostics
Imports System.Text
Imports Bytescout.BarCode

Class Program

    Friend Shared Sub Main(ByVal args As String())

        ' Create and activate QRCode component instance
        Using barcode As New QRCode()

            barcode.RegistrationName = "demo"
            barcode.RegistrationKey = "demo"
            
            ' Sample byte array to use as value  
            Dim byteArray As Byte() = New Byte() {0, 10, 11, 12, 13, 14, 15, &HFF}

            ' Set value by converting byte array to string  
            barcode.Value = Encoding.ASCII.GetString(byteArray)

            ' Save barcode image
            barcode.SaveImage("result.png")

        End Using

        ' Open the image in default associated application (for the demo purpose)
        Process.Start("result.png")

    End Sub

End Class


  Click here to get your Free Trial version of the SDK

Tutorials:

prev
next