barcode generator for .NET apps  >  generate barcodes with c#.net  >  create usps planet barcode with C# .NET


USPS PLANET C#.NET Barcode Generator in Visual Stuido

make planet barcodes with c# for .NET programs in Visual Studio


Overview

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

Related solutions for creating USPS Planet barcode image in C#.NET



Features

Technologies of PLANET C# .NET Creator

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

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

Customization of C# .NET PLANET Barcodes

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

PLANET Source code and Developer License

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


Create USPS Planet in C#.NET projects

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

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

/*
 Assign the value that are encoded into Planet symbology.

 Encodable character set of Planet is as follow,
   characters: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9

 Planet barcode encodes only fixed data length of 11 or 13 digits
 excluding the check digit
*/

barcode.CodeText = "1234567890123";

/*
 Enable the checksum for the Planet symbology
 so that the barcode engine calculates the check digit automatically
*/

barcode.EnableChecksum = true;

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

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

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

//Set the resolution of Planet barcode image that is drawn to,
//Change the Planet barcode image orientation

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

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

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

//Set the export barcode image format as PNG in C#
//Generate Planet barcode image in C#

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