barcode making library for .NET  >  vb.net barcode creator api  >  embed Interleaved 2 of 5 printing with vb.net


VB .NET Interleaved 2 of 5 Barcode Generator

draw, create 2 of 5 interleaved barcode with vb.net in Visual Studio 2005 and up versions


Overview

Interleaved 2 of 5, a.k.a. USS ITF 2/5, ITF, I-2/5, 2 of 5 Interleaved, 2/5 Interleaved, VB.NET Barcode Generator, provided by KeepDynamic.com, is an I2/5 creator. It aims to help you easily and simply create I2/5 barcodes in your .NET projects.

Related barcode solutions for creating Interleaved 2 of 5 barcode images



Features

Interleaved 2 of 5 VB.NET Barcode Generator Technologies

Our Interleaved 2 of 5 Barcode Generator for VB.NET is completely developed in .NET 2.0, and is compatible with the .NET 2.0 and greater development environments. You can easily integrate I2/5 barcodes into your VB.NET apps. Interleaved 2 of 5 can be immediately generated in your VB.NET Classes and console apps. In VB.NET, ASP.NET web projects, and VB.NET Windows Forms software, barcode images can be easily created. This VB.NET Barcode Generator also supports the generation of I2/5 barcodes in Reporting Service & Crystal Reports.

Interleaved 2 of 5 barcode images generated by Barcode Generator for VB.NET

This Interleaved 2 of 5 VB.NET Barcode Generator supports the image formats such as JPEG, GIF, TIFF, BMP, and PNG. Properties of Interleaved 2 of 5, such as the barcode size, are able to be configured according to users' requirements and the image orientation support 0, 90, 180, or 270 degrees. With the thermal printer support, high quality Interleaved 2 of 5 barcode images are able to be printed on high resolution printers as well as on low resolution printers. White bar increase option increases the blank space between the bars for improving the readability.

Customization of I2/5 Barcodes

Interleaved 2 of 5 VB.NET Barcode generator provides diversified options for easily customizing the Interleaved 2 of 5barcodes. Text Options enables or disables the human-readable text in the I2/5 barcodes VB. NET barcode generator. Graphic Configuration Options configure the colors of the foreground and background. Tilde Functions allow the functions, such as returns, tabs and other ones, to be encoded easily. Bearer bar for Interleaved 2 of 5 barcode are easy to be generated

I2/5 barcodes Source code and Developer License

Interleaved 2 of 5 VB.NET source code is supplied with the purchase of unlimited developer licenses. Royalty will be free with the purchase of a Developer License.

Create Interleaved 2 of 5 barcode in VB.NET

Imports KeepDynamic.Barcode.Generator
Imports System.Drawing.Imaging


Dim barcode As KeepDynamic.Barcode.Generator.BarCode
barcode = New KeepDynamic.Barcode.Generator.BarCode()

'change the barcode symbology type to 2 of 5 Interleaved
barcode.SymbologyType = SymbologyType.Interleaved25

'Assign characters that are encoded into Interleaved 2 of 5 barcode symbology.
'Encodable character set of 2 of 5 Interleaved is as follow,
' Numeric digits: 0 1 2 3 4 5 6 7 8 9
'Interleaved 2 of 5 barcode is a variable length symbology so it encodes any length of characters

barcode.CodeText = "1234567890"

'Enable checksum for 2 of 5 Interleaved so that the check digit will be calculated automatically
barcode.EnableChecksum = True

'Set the barcode graphic measurements as Pixel for 2 of 5 Interleaved
barcode.GraphicsUnit = KeepDynamic.Barcode.Generator.GraphicsUnit.Pixel

'Set the values of bar width and bar height for 2 of 5 Interleaved
barcode.X = 2
barcode.Y = 75

'Set the margins around the 2 of 5 Interleaved symbol
barcode.LeftMargin = 0
barcode.RightMargin = 0
barcode.TopMargin = 0
barcode.BottomMargin = 0

'Set the resolution of 2of5 Interleaved image that is drawn to,
'change the orientation of Interleaved 2of5 barcode image

barcode.Resolution = 72
barcode.Rotate = Rotate.Rotate0

'Set the ratio between wide elements to narrow elements for 2 of 5 Interleaved
barcode.WideNarrowRatio = 2.0f

'Display the characters encoded into the 2 of 5 Interleaved symbology
'set the font style of the characters encoded into 2 of 5 Interleaved

barcode.DisplayCodeText = True
barcode.CodeTextFont = New Font("Arial", 11f, FontStyle.Regular)

'Set 2 of 5 Interleaved barcode drawing image format to PNG in VB.NET
'generate Interleaved 2of5 barcode image in VB.NET

barcode.Format = ImageFormat.Png
barcode.drawBarcode("C://barcode-interleaved25-vbnet.png")