ByteScout BarCode Generator SDK - VB.NET - Aztec Barcode With Binary Data - ByteScout

ByteScout BarCode Generator SDK – VB.NET – Aztec Barcode With Binary Data

  • Home
  • /
  • Articles
  • /
  • ByteScout BarCode Generator SDK – VB.NET – Aztec Barcode With Binary Data

aztec barcode with binary data in VB.NET using ByteScout Barcode SDK

Tutorial: how to do aztec barcode with binary data in VB.NET

On this page you will learn from code samples for programming in VB.NET. ByteScout Barcode SDK was made to help with aztec barcode with binary data in VB.NET. ByteScout Barcode SDK is the robost library (Software Development Kit) that is designed for automatic generation of high-quality barcodes for printing, electronic documents and pdf. All popular barcode types are supported from Code 39 and Code 129 to QR Code, UPC, GS1, GS-128, Datamatrix, PDF417, Maxicode and many others. Provides support for full customization of fonts, colors, output and printing sizes. Special tools are included to verify output quality and printing quality. Can add generated barcode into new or existing documents, images and PDF.

VB.NET code snippet like this for ByteScout Barcode SDK works best when you need to quickly implement aztec barcode with binary data in your VB.NET application. VB.NET sample code is all you need: copy and paste the code to your VB.NET application’s code editor, add a reference to ByteScout Barcode SDK (if you haven’t added yet) and you are ready to go! Enjoy writing a code with ready-to-use sample VB.NET codes to implement aztec barcode with binary data using ByteScout Barcode SDK.

ByteScout Barcode SDK 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(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

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Barcode SDK Home Page

Explore ByteScout Barcode SDK Documentation

Explore Samples

Sign Up for ByteScout Barcode SDK 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 Barcode SDK Home Page

Explore ByteScout Barcode SDK Documentation

Explore Samples

Sign Up for ByteScout Barcode SDK Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next