.NET bar code components >  barcode encoding with C# >  Intelligent Mail barcode creation in c#


C# USPS Intelligent Mail Barcode Generator

Intelligent Mail(IM) barcode, or OneCode barcode embedding in .NET projects with C#


Overview

Keepdynamic.com supply USPS Intelligent Mail Barcode (OneCode) C# .NET Barcode Generator for the creation of USPS Intelligent Mail Barcode (OneCode) barcodes in your C# .NET framework projects.

Related solutions for generating OneCode image in C#.NET



Features

Technologies of USPS Intelligent Mail Barcode (OneCode) C# .NET Creator

C# .NET USPS Intelligent Mail Barcode (OneCode) Barcode Creator helps you generate USPS Intelligent Mail Barcode (OneCode) 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 USPS Intelligent Mail Barcode (OneCode) in C# .NET classes and console applications is easy. Using this C# .NET Barcode Creator USPS Intelligent Mail Barcode (OneCode) 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 USPS Intelligent Mail Barcode (OneCode) Barcode Creator

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

Customization of USPS Intelligent Mail Barcode (OneCode) Barcodes

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

USPS Intelligent Mail Barcode (OneCode) Source code and Developer License

Complete C# .NET USPS Intelligent Mail Barcode (OneCode) Barcode Creator source code is provided with the purchasing of unlimited developer license. Royalty is free if purchasing a developer license.


Create Intelligent Mail(Onecode) barcode in C#.NET

//Create a new barcode object in C#.NET,
//and set the barcode type to USPS Onecode (Intelligent Mail barcode) symbology

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

/*
 Assign the value that are encoded into USPS Onecode barcode.

 Valid character set of USPS Onecode includes,
   Numeric digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9

 Onecode symbol encodes fixed data length of 20, 25, 29, and 31 digits
*/

barcode.CodeText = "12345678901234567890";

/*
 Enable the checksum option for Onecode barcode symbology
 and the check digit will not appear in the human-readable text
*/

barcode.EnableChecksum = true;

//Choose the barcode graphic measurements as Pixel to USPS Onecode barcode
barcode.GraphicsUnit = KeepDynamic.Barcode.Generator.GraphicsUnit.Pixel;

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

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

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

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

/*
 Display the characters encoded into the Onecode barcode symbology
 Set the font style of characters encoded into the Onecode barcode
*/

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

/*
 Set Onecode barcode drawing image format to PNG in C#
 Generate Onecode barcode image in C#
*/

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