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

ByteScout QR Code SDK – VB.NET – Encode Binary Data to QR Code

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

encode binary data to QR code in VB.NET with ByteScout QR Code

encode binary data to QR code in VB.NET

The sample source codes on this page will demonstrate you how to make encode binary data to QR code in VB.NET. ByteScout QR Code was made to help with encode binary data to QR code in VB.NET. ByteScout QR Code is the SDK for QR Code barcode generation. This SDK provides full set of features to control output barcodes quality, encoding, size, features. You may change output zize, set an image to be embedded into QR Code barcode generated. Includes special features to encode contact card, URL, phone and other information into QR Code barcode. Can run in batch barcode generation mode.

VB.NET code snippet like this for ByteScout QR Code works best when you need to quickly implement encode binary data to QR code in your VB.NET application. To do encode binary data to QR code in your VB.NET project or application you may simply copy & paste the code and then run your app! Enjoy writing a code with ready-to-use sample VB.NET codes to implement encode binary data to QR code using ByteScout QR Code.

ByteScout QR Code is available as free trial. You may get it from our website along with all other source code samples for VB.NET applications.

On-demand (REST Web API) version:
 Web API (on-demand version)

On-premise offline SDK for Windows:
 60 Day Free Trial (on-premise)

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

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout QR Code Home Page

Explore ByteScout QR Code Documentation

Explore Samples

Sign Up for ByteScout QR Code Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

VIDEO

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout QR Code Home Page

Explore ByteScout QR Code Documentation

Explore Samples

Sign Up for ByteScout QR Code Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next