barcode generator library for .NET  >  C# .NET Barcode Generation  >  c# itf14 barcode encoder


C# ITF-14 Barcode Endcoder

itf14 barcode C# sdk integration, generate itf14 in .NET projects with C#


Overview

Keepdynamic.com supply ITF-14 C# .NET Barcode Generator for the creation of ITF-14 barcodes in your C# .NET framework projects.

Related solutions for generating ITF14 barcode image in C#.NET



Features

Technologies of ITF-14 C# .NET Creator

C# .NET ITF-14 Barcode Creator helps you generate ITF-14 barcodes that you probably need in your C# .NET applications. It is entirely built in .NET 2.0 and supports .NET 2.0, 3.0, 3.5, 4.0. Bar coding of ITF-14 in C# .NET classes and console applications is easy. Using this C# .NET Barcode Creator, ITF-14 barcodes can also be easy to be generated in ASP.NET web projects, Microsoft Windows Forms, SQL Server Reporting Services (SSRS), and Crystal Reports.

Barcode images generated by C# .NET ITF-14 Barcode Creator

Image formats supported by this ITF-14 C#.NET barcode Creator include gif, jpeg, png, bmp, and tiff. Barcodes ITF-14 can be rotated to 0, 90, 180, or 270 degrees based on specific requirements. The image size and other properties ITF-14 may be adjusted to meet the users' specifications. High quality barcodes ITF-14 are supported by this product without any distortion. Bearer bar for ITF-14 barcode are easy to be generated

Customization of C# .NET ITF-14 Barcodes

Full functional features of C# .NET ITF-14 Barcode Creator make the operation of barcode easy and simple. Using this ITF-14 creator, the appearance of the human readable characters on ITF-14 barcodes can be enabled or disabled. ITF-14 C# .NET Barcode Creator provided the functionality of configuring the colors of foreground and background. It is easy to encode the returns, tabs and other functions into your C# .NET applications. Bearer bar is also easy to be generated for ITF-14.

ITF-14 C# .NET Source code and Developer License

Complete C# .NET ITF-14 Barcode Creator source code is provided with the purchasing of unlimited developer license. Royalty is free if purchasing a developer license.


Generate ITF14 in C#.NET

//Create a new linear barcode object in C#.NET,
//and change the barcode type to ITF14 symbology

BarCode barcode = new BarCode();
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
 and 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,
 and 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 C# and
 generate ITF14 image in C#
*/

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