The documentation is designed for a specific purpose to help you to apply the features on your side. ByteScout Barcode Suite is the bundle that privides 3 SDK products to generate barcodes (Barcode SDK), read barcodes (Barcode Reaer SDK) and read and write spreadsheets (Spreadsheet SDK). It can be applied to generate aztec barcode with binary data with barcode sdk using VB.NET.
The SDK samples given below describe how to quickly make your application do generate aztec barcode with binary data with barcode sdk in VB.NET with the help of ByteScout Barcode Suite. Just copy and paste the code into your VB.NET application’s code and follow the instructions. Check VB.NET sample code samples to see if they respond to your needs and requirements for the project.
You can download free trial version of ByteScout Barcode Suite from our website with this and other source code samples for VB.NET.
On-demand (REST Web API) version:
Web API (on-demand version)
On-premise offline SDK for Windows:
60 Day Free Trial (on-premise)
Imports System.Diagnostics
Imports System.Text
Imports Bytescout.BarCode
Class Program
Friend Shared Sub Main(args As String())
' Create Barcode component instance
Using barcode As New Barcode()
barcode.RegistrationName = "demo"
barcode.RegistrationKey = "demo"
' Set barcode type
barcode.Symbology = SymbologyType.Aztec
' Force binary mode
barcode.Options.AztecCompactionMode = AztecCompactionMode.Binary
' 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.[Default].GetString(byteArray)
' Save barcode image
barcode.SaveImage("result.png")
' Open output image in default associated application
Process.Start("result.png")
End Using
End Sub
End Class
60 Day Free Trial or Visit ByteScout Barcode Suite Home Page
Explore ByteScout Barcode Suite Documentation
Explore Samples
Sign Up for ByteScout Barcode Suite Online Training
Get Your API Key
Explore Web API Docs
Explore Web API Samples
60 Day Free Trial or Visit ByteScout Barcode Suite Home Page
Explore ByteScout Barcode Suite Documentation
Explore Samples
Sign Up for ByteScout Barcode Suite Online Training
Get Your API Key
Explore Web API Docs
Explore Web API Samples
also available as: