ByteScout Premium Suite - VBScript - Custom pdf417 configuration with barcode sdk - ByteScout

ByteScout Premium Suite – VBScript – Custom pdf417 configuration with barcode sdk

  • Home
  • /
  • Articles
  • /
  • ByteScout Premium Suite – VBScript – Custom pdf417 configuration with barcode sdk

custom pdf417 configuration with barcode sdk in VBScript with ByteScout Premium Suite

How to apply ByteScout Premium Suite for custom pdf417 configuration with barcode sdk in VBScript

This page explains the steps and algorithm of implementing custom pdf417 configuration with barcode sdk and how to make it work in your application. ByteScout Premium Suite helps with custom pdf417 configuration with barcode sdk in VBScript. ByteScout Premium Suite is the bundle that includes twelve SDK products from ByteScout including tools and components for PDF, barcodes, spreadsheets, screen video recording.

This rich and prolific sample source code in VBScript for ByteScout Premium Suite contains various functions and options you should do calling the API to implement custom pdf417 configuration with barcode sdk. If you want to know how it works, then this VBScript sample code should be copied and pasted into your application’s code editor. Then just compile and run it. VBScript application implementation mostly involves various stages of the software development so even if the functionality works please check it with your data and the production environment.

Our website gives free trial version of ByteScout Premium Suite. It includes all these source code samples with the purpose to assist you with your VBScript application implementation.

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

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

SetCustomPDF417Configuration.vbs
      
Set bc = CreateObject("Bytescout.BarCode.Barcode") ' set symbology to PDF417 bc.Symbology = 13 ' 13 = PDF417 barcode type ' set barcode value to encode bc.Value = "12345678901234567890" ' by default the SDK tries to make the barcode size as small as possible ' if we need it then we can set manual number of rows and columns bc.Options.PDF417UseManualSize = true ' enable manual size mode bc.Options.PDF417ColumnCount = 7 ' set max number of columns bc.Options.PDF417RowCount = 50 ' set max number of rows bc.CutUnusedSpace = False ' you can set it to True to cut unused space bc.SaveImage "result.png" Set bc = Nothing ' Open the output file in default app Set shell = CreateObject("WScript.Shell") shell.Run "result.png", 1, false Set shell = Nothing

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout Premium Suite Home Page

Explore ByteScout Premium Suite Documentation

Explore Samples

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

Explore ByteScout Premium Suite Documentation

Explore Samples

Sign Up for ByteScout Premium Suite Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next