.NET bar code making software  >  drawing 1D/2D barcode with c# in Visual Studio  >  Identcode bar code printing with C#


Identcode Barcode C# Generator for .NET Apps

draw, print identcode bar code with C# in Visual Studio 2005/2008/2010


Overview

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

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

Features

Technologies of Identcode C# .NET Creator

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

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

Customization of Identcode Barcodes

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

Identcode Source code and Developer License

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


Create Identcode in C#.NET

/*
 Create a new barcode object in C#,
 and set barcode type to Leitcode
*/

BarCode barcode = new BarCode();
barcode.SymbologyType = SymbologyType.Leitcode;

/*
 Set the value that are encoded into Leitcode barcode symbology.

 Valid data set of Leitcode symbology contains,
   Any number of 0, 1, 2, 3, 4, 5, 6, 7, 8, 9

 Leitcode barcode encodes a fixed data length of 14 digits inclusive of 1 check digit
*/

barcode.CodeText = "1234567890123";

/*
 Set the checksum option as true
 so that the barcode library calculates the check digit automatically
*/

barcode.EnableChecksum = true;

//Set the Leitcode barcode graphic measurements as Pixel
barcode.GraphicsUnit = KeepDynamic.Barcode.Generator.GraphicsUnit.Pixel;

//Assign the values of bar width and bar height to Leitcode barcode
barcode.X = 2;
barcode.Y = 75;

//Set the margins around the Leitcode barcode symbology
barcode.LeftMargin = 0;
barcode.RightMargin = 0;
barcode.TopMargin = 0;
barcode.BottomMargin = 0;

/*
 Set the resolution of Leitcode barcode image that is drawn to,
 and change the Leitcode barcode image orientation
*/

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

//Set the wide bars to narrow bars ratio for Leitcode
barcode.WideNarrowRatio = 3.0f;

/*
 Display the data text encoded into the Leitcode barcode symbology
 Set the font style of data text encoded into the Leitcode barcode
*/

barcode.DisplayCodeText = true;
barcode.CodeTextFont = new Font("Arial", 11f, FontStyle.Regular);

/*
 Set export image format of Leitcode as PNG in C#.NET
 Draw Leitcode barcode image in C#
*/

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