ITF-14 for ASP.NET
BusinessRefinery.com provides ASP.NET Web Barcode control, which support to 20+ linear & 2D barcodes in ASP.NET Web applications, including ITF-14 Besides, it easily and quickly generates ITF-14 barcodes in IIS without any .NET programming. Equipped with 50+ barcode properties, ASP.NET Barcode ITF-14 Generator allows users to customize ITF-14 barcode size, image properties, color, etc to suit their needs.

ITF-14 is a fixed-length, numeric linear barcode symbology used in shipping industry. It is is also known as UPC Shipping Container Symbol ITF-14, ITF14, Case Code, UPC Case Code, EAN/UCC-14, EAN-14, UCC-14, DUN-14, GTIN-14, UCC-12, EAN/UCC-13.

ASP.NET ITF-14 prints 10 letters:
  • 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
ASP.NET Barcode ITF-14 Generator

1. How to create ITF-14 barcodes in ASP.NET Web Application using ASP.NET Barcode Generator Web Control Library?

  1. Download BusinessRefinery.com ASP.NET ITF-14 Barcode and unzip
  2. Copy BusinessRefinery.Barcode.Web.dll to your ASP.NET project folder. Do not copy dll to .NET bin directory, Visual Studio build tools will do it for you.
  3. Add BusinessRefinery.Barcode.Web.dll to your ASP.NET project or website reference

2. Generate ITF-14 into your ASP.NET Web Forms using ASP.NET Barcode Web Control

  1. Install BusinessRefinery.com ASP.NET ITF-14 Barcode
  2. Add ASP.NET Barcode Generator Control to your Visual Studio ToolBox
  3. Copy "linear.aspx" and "linear.aspx.cs" to the folder where your aspx pages are generating barcodes.
  4. Drag and drop "LinearWebForm" to your ASPX web forms.
  5. Run the website to view the barcodes generated. To customize ITF-14 settings, view ITF-14 barcode settings below.

3. Generate ITF-14 into your Interner Information Service (IIS) using ASP.NET Barcode Web Control

  1. Download BusinessRefinery.com ASP.NET ITF-14 Barcode and unzip
  2. Copy barcode fold and contents to IIS and create a new file directory called "br_barcode"
  3. Restart IIS, navigate to http://YourDomain:Port/br_barcode/aspnet.aspx?code=1234567890123&symbology=24
  4. Add an image tag <img> into the web page to create Interleaved 2 of 5 barcode image in html or aspx pages, e.g.
    <img src="http://YourDomain:Port/br_barcode/aspnet.aspx?code=1234567890123&symbology =24 />

4. Generate ITF-14 into your ASP.NET Web Forms using C#, VB.NET ITF-14 Generating Sample Code


How to generate ITF-14 barcodes in C#.NET Class?

using BusinessRefinery.Barcode;

Linear barcode = new Linear();
barcode.Symbology = Symbology.ITF14;
barcode.Code = "9876543210123";
barcode.draw arcode2ImageFile("C://itf14.gif");

How to generate ITF-14 barcodes in VB.NET Class?

Dim barcode As BusinessRefinery.Barcode.Linear barcode = New BusinessRefinery.Barcode.Linear()
barcode.Symbology = BusinessRefinery.Barcode.Symbology.ITF14
barcode.Code = "9876543210123"
barcode.drawBarcode2ImageFile("C://itf14.gif")

5. How to draw ITF-14 barcodes to image files (GIF, JPEG, BMP, PNG, & TIFF) and ASP.NET objects like Graphics, Stream, Bitmap?


Draw ITF-14 barcodes to image files

using BusinessRefinery.Barcode;

Linear barcode = new Linear();
barcode.Symbology = Symbology.ITF14;
barcode.Code = "9876543210123";
barcode.draw arcode2ImageFile("C://itf14.gif");

Draw ITF-14 barcode image into .NET Graphics, Stream & Bitmap objects.

barcode.drawBarcode2Stream("Stream object");
barcode.drawBarcodeOnGraphics("Graphics object");
Bitmap barcodeInBitmap = barcode.drawBarcode();

ASP.NET Barcode ITF-14 Generator - Barcode Property Settings

Basic

  • symbology (HTTP Parameter, ITF-14: 0)to choose barcode type; Default Value: 1;
  • code(HTTP Parameter) to encode ITF-14 valid character; Default Value: ""
  • add-checksum (HTTP Parameter)to apply Checksum digit at the end of some linear barcode value; Default Value: false

For ITF-14

  • bearer-bar-style (HTTP Parameter) to choose the style of bearer bar, which can be frame or horizontal bars only; Default Value: 0 'A'; Valid value: 0 ('A'), 1 ('B'), 2 ('C') , 3 ('D')
  • bearer-bar-width (HTTP Parameter) to set the bearer bar size; Default Value: 2.0f; Valid value: 0-10
  • bar-ratio (HTTP Parameter) to specify ITF-14 wide vs narrow bar width ratio; Default Value: 2.0f; Valid value: 2.0 - 3.0

Barcode Size

  • barcode-unit (HTTP Parameter)to choose unit of meature for all size related properties ; Default Value: 0 (UOM_PIXEL)
  • bar-width (HTTP Parameter) to set bar module width (X); Default Value: 3
  • bar-height (HTTP Parameter) to set bar module height(Y); Default Value: 60
  • left-margin (HTTP Parameter) to set generated barcode image left margin; Default Value: 0.0f
  • right-margin (HTTP Parameter) to set generated barcode image right margin; Default Value: 0.0f
  • top-margin (HTTP Parameter) to set generated barcode image top margin; Default Value: 0.0f
  • bottom-margin (HTTP Parameter) to set generated barcode image bottom margin; Default Value: 0.0f
  • resolution (HTTP Parameter) to control generated barcode image resolution in dpi; Default Value: 72 dpi
  • rotate (HTTP Parameter) to rotate generated barcode image angle; Default Value: 0; valid values: 0 (ROTATE_0), 1 (ROTATE_90), 2 (ROTATE_180), 3 (ROTATE_270)
  • barcode-width (HTTP Parameter) to manage generated barcode image width; Default Value: 0
  • barcode-height (HTTP Parameter) to manage generated barcode image height; Default Value: 0

Barcode Text Style

  • display-text (HTTP Parameter) to draw barcode value text under the barcode if it is true; Default Value: true
  • display-checksum-digit (HTTP Parameter) to display last checksum digit if it is true; Default Value: true
  • text-font (HTTP Parameter) to customize drawn barcode value text font style; Default Value: new Font("Arial", Font.PLAIN, 11) text-margin (HTTP Parameter) to the space between barcode and barcode text; Default Value: 6 pixel




Quick Links