.NET barcode creation library  >  vb.net barcode encoder  >  make itf14 barcode for .NET with vb.net


VB .NET ITF14 Barcode Generator

itf14 vb.net barcode encoding sdk generates, creates, exports itf-14 images with visual basic for .net apps


Overview

ITF-14, a.k.a. ITF14, EAN/UCC-14, EAN-14, UCC-14, DUN-14, GTIN-14, VB.NET Barcode generator, provided by KeepDynamic.com, is a ITF-14 creator. It aims to help you easily and simply create ITF-14 in your .NET projects.

Related barcode solutions for creating ITF14 barcode images



Features

ITF-14 VB.NET Barcode Generator Technologies

Our ITF-14 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 ITF-14 barcodes into your VB.NET apps. ITF-14 is also able to 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 ITF-14 barcodes in Reporting Service & Crystal Reports.

ITF-14 barcode images generated by Barcode Generator for VB.NET

This ITF-14 VB.NET Barcode Generator supports the image formats such as JPEG, GIF, TIFF, BMP, and PNG. Properties of ITF-14, 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 ITF-14 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 ITF-14 Barcodes

ITF-14 VB.NET Barcode generator provides diversified options for easily customizing the ITF-14 barcodes. 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 ITF-14 barcode are easy to be generated

ITF-14 barcode Source code and Developer License

ITF-14 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 ITF-14 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 type to ITF14 symbology
barcode.SymbologyType = SymbologyType.ITF14

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

barcode.CodeText = "1234567890123"

'Enbable the checksum option for ITF14
'so that the barcode engine calculates check digit to ITF14 automatically

barcode.EnableChecksum = True

'Set the barcode graphic measurements as Pixel for ITF14
barcode.GraphicsUnit = KeepDynamic.Barcode.Generator.GraphicsUnit.Pixel

'Assign values of bar width and bar height to ITF14 barcode
barcode.X = 2
barcode.Y = 75

'Add bearer bars to ITF14 barcode symbology
'Assign the width of bearer bar to 2 pixles

barcode.ITF14BarHori = 2
barcode.ITF14BarVert = 2

'Set the margins around the ITF14 symbol
barcode.LeftMargin = 0
barcode.RightMargin = 0
barcode.TopMargin = 0
barcode.BottomMargin = 0

'Set the resolution of ITF14 image that is drawn to,
'Change the orientation of ITF14 barcode image

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

'Assign a wide-to-narrow ratio to ITF14 symbology
barcode.WideNarrowRatio = 2.0f

'Display the characters encoded into the ITF14 symbology and
'set the font style of the characters encoded into ITF14

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

'Set ITF14 barcode drawing image format to PNG in VB.NET
'Generate ITF14 image in VB.NET

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