- Generate, integrate dynamic ITF-14 images in ASP.NET web sites/ web form and Windows applications
- Easily generate high-quality 1D ITF-14 barcode images in Visual C#, VB.NET class library
- Written entirely in managed Visual C#.NET code
- Strong named assemblies for Microsoft .NET Framework 2.0 and above
- Encode numeric data for ITF-14 in Crystal Reports & SQL Server Reporting Services
- Print and save ITF-14 linear barcodes in Png, Jpeg, Gif, Tiff, Bmp image formats
- Automatically add checksum digit for ITF-14 as required in GS1 specification
- Easy-to-use barcode package for .NET developers
KA.Barcode for .NET Suite is a professional & lightweight .NET component package, which allows developers to add barcoding capabilities into .NET projects. Furthermore, ITF-14 barcode properties could be adjusted through the setting panel or C#, VB.NET programming.
ITF-14 Introduction
ITF-14 is the GS1 implementation of an Interleaved 2 of 5 bar code to encode a Global Trade Item Number. ITF-14 symbols are generally used on packaging levels of a product, such as a case box of 24 cans of soup. The ITF-14 will always encode 14 digits including the check digit.
ITF-14 Encodable Character Set
ITF-14 Data Length
- 13 digits (excluding the check digit automatically added by KA.Barcode generator)
Option, simple barcode generation and configuration example tutorial for developers. This product is designed for .NET vba code application within...
more>
ITF-14 Generation in .NET Applications
Above all, please download
KA.Barcode for .NET Suite and unzip.
How to Drag & Drop Barcode Control to Generate ITF-14
1.
Open your .NET Project with Visual Studio, and right-click "Choose Items..."
2.
Browse and select "KeepAutomation.Barcode.Windows.dll" or "KeepAutomation.Barcode.Web.dll"
3.
Add "BarCodeControl" to Visual Studio "Toolbox"
4.
Drag and drop the "BarCodeControl" from the "Toolbox" onto your forms
5.
Select the barcode on the form, switch to the Properties Window, and set "Symbology" property to "ITF14"
How to Generate ITF-14 in C#, VB.NET Class Library
Switch to the Visual Studio Solution Explorer window, and add "KeepAutomation.Barcode.Windows.dll" or "KeepAutomation.Barcode.Web.dll" to as reference of the project. Then copy the following C# or VB.NET to where the ITF-14 is generated.
using KeepAutomation.Barcode.Bean;
BarCode itf14 = new BarCode();
itf14.Symbology = KeepAutomation.Barcode.Symbology.ITF14;
itf14.CodeToEncode = "1234567890123";
itf14.generateBarcodeToImageFile("c://itf14-csharp.png");
Dim itf14 As KeepAutomation.Barcode.Bean.BarCode = New KeepAutomation.Barcode.Bean.BarCode
itf14.Symbology = KeepAutomation.Barcode.Symbology.ITF14
itf14.CodeToEncode = "1234567890123"
itf14.generateBarcodeToImageFile("c:/itf14-vbnet.png")
To generate, display scannable high-quality QR Code images in ASP.NET webform / website ....
Barcoding feature into .NET projects using Visual Basic ....
more>
How to Generate ITF-14 with Bearer Bars
Bearer bars are provided as a optional solution for ITF-14 to equalize the pressure exerted by the printing plate over the entire surface of the symbol. In this way, reading reliability of ITF-14 barcode could be enhanced.
itf14.BearerBarLeft = 1;
itf14.BearerBarTop = 1;
itf14.BearerBarLeft = 1
itf14.BearerBarTop = 1
How to Adjust ITF-14 Wide Bars
The width of the wide bars in ITF-14 could be adjusted using the WideNarrowRatio property. The value of WideNarrowRatio is the ratio that wide bar width is to narrow bar width.
itf14.X = 1;
itf14.WideNarrowRatio = 2.0f;
itf14.X = 1
itf14.WideNarrowRatio = 2.0f
How to Generate ITF-14 in Microsoft IIS
1.
Copy the "barcode" folder from the unzipped folder to IIS web application folder
2.
Create a virtual directory named "barcode", then link it to the "barcode" folder in web application folder
3.
Testing: Open your web browser, and navigate to "http://localhost/barcode/barcode.aspx?symbology=24&code-to-encode=1234567890123"
4.
Adding ITF-14 to web page: insert the following tag onto your web pages
<img src="http://localhost/barcode/barcode.aspx?symbology=24&code-to-encode=1234567890123"/>