.NET Barcode  >  embedding barcode with C#  >  C# interleaved 2of5 barcode generator api


C# Interleaved 2 of 5 Barcode Creator

2 of 5 Interleaved barcode drawing, encoding with C# for .NET project templates


Overview

Keepdynamic.com supply Interleaved 2 of 5 C# .NET Barcode Generator for the creation of Interleaved 2 of 5 barcodes in your C# .NET framework projects.

Related solutions for generating 2of5 Interleaved image in C#.NET



Features

Technologies of Interleaved 2 of 5 C# .NET Creator

C# .NET Interleaved 2 of 5 Barcode Creator helps you generate Interleaved 2 of 5 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 Interleaved 2 of 5 in C# .NET classes and console applications is easy. Using this C# .NET Barcode Creator, Interleaved 2 of 5 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 Interleaved 2 of 5 Barcode Creator

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

Customization of Interleaved 2 of 5 Barcodes

Full functional features of C# .NET Interleaved 2 of 5 Barcode Creator make the operation of barcode easy and simple. Using this Interleaved 2 of 5 creator, the appearance of the human readable characters on Interleaved 2 of 5 barcodes can be enabled or disabled. Interleaved 2 of 5 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 Interleaved 2 of 5

Interleaved 2 of 5 Source code and Developer License

Complete C# .NET Interleaved 2 of 5 Barcode Creator source code is provided with the purchasing of unlimited developer license. Royalty is free if purchasing a developer license


Generate Interleaved 2of5 in C#.NET

/*
 Create a new linear barcode object in C#.NET and
 change the barcode symbology type to 2 of 5 Interleaved
*/

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

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