ByteScout Barcode Suite - VB.NET - Generate pdf417 barcode with binary data with barcode sdk - ByteScout

ByteScout Barcode Suite – VB.NET – Generate pdf417 barcode with binary data with barcode sdk

  • Home
  • /
  • Articles
  • /
  • ByteScout Barcode Suite – VB.NET – Generate pdf417 barcode with binary data with barcode sdk

How to generate pdf417 barcode with binary data with barcode sdk in VB.NET and ByteScout Barcode Suite

Step-by-step tutorial on how to generate pdf417 barcode with binary data with barcode sdk in VB.NET

An easy to understand guide on how to generate pdf417 barcode with binary data with barcode sdk in VB.NET with this source code sample. ByteScout Barcode Suite: 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 generate pdf417 barcode with binary data with barcode sdk in VB.NET.

The following code snippet for ByteScout Barcode Suite works best when you need to quickly generate pdf417 barcode with binary data with barcode sdk in your VB.NET application. Just copy and paste the code into your VB.NET application’s code and follow the instructions. If you want to use these VB.NET sample examples in one or many applications then they can be used easily.

All these programming tutorials along with source code samples and ByteScout free trial version are available for download from our website.

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.PDF417 ' Force binary mode barcode.Options.PDF417CompactionMode = PDF417CompactionMode.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 Suite Home Page

Explore ByteScout Barcode Suite Documentation

Explore Samples

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

Explore ByteScout Barcode Suite Documentation

Explore Samples

Sign Up for ByteScout Barcode Suite Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next