C# PLANET Generator Overview
PLANET, is also named as USPS PLANET Barcode, USPS Confirms Service Barcode.
free barcode generator in asp net c#,
ean 128 barcode c#,
read barcode from image c# free library,
c# qr code library open source,
barcode scanner in c# windows application,
qr code generator c# source code
C# PLANET Barcode Generator - a function of .NET barcode generator, makes PLANET generation in C#.NET easier. It is mature, easy-to-use for developers to create high quality PLANET in multiple C#.NET development environments.
visual basic 2010 barcode generator,
progress bar code in c# windows application,
how to print barcode in asp net c#,
barcode scanner programming asp.net,
gs1 barcode parsing c#,
java barcode reader
Completely run in C#.NET, C# PLANET Barcode Generator provides 50+ options to customize PLANET barcode size, barcode orientation, barcode color and image formats, etc. For more details about C#.NET PLANET barcode, please refer to: Barcode Data Encoding of PLANET in C#.NET, Barcode Size Setting of PLANET in C#.NET.
Other PLANET Barcode Creation Components
.NET PLANET Barcode Windows Form Component - Generate PLANET in .NET Winforms applications
ASP.NET PLANET Web Form Component - stream PLANET in ASP.NET Web applications
PLANET Barcode Component for Crystal Reports - render & insert PLANET in Crystal Reports
PLANET Barcode Component for Word Add-in - draw PLANET in Microsoft Office Word
PLANET Barcode Component for Excel Add-in - create PLANET in Microsoft Office Excel
Java PLANET Barcode Component - render & print PLANET in Java
KeepAutomation.com provides other PLANET solutions including PLANET barcode fonts, PLANET for Iphone, PLANET for Android, etc
How to Generate, Specify PLANET Barcode Image Using C# class
PLANET barcode images can be affected by barcode orientation, barcode resolution, and barcode image formats. KeepAutomation.com C# PLANET barcode generator provides rich image related options to specify PLANET Barcode images.
- Download KeepAutomation.com C# Generator and unzip
- Copy KeepAutomation.Barcode.Windows.dll or KeepAutomation.Barcode.Web.dll to your C# project folder.
- Open Microsoft Visual Studio, choose "Add Reference" in "Project"
- Browse KeepAutomation.Barcode.Windows.dll or KeepAutomation.Barcode.Web.dll
- Now you will see "KeepAutomation.Barcode.Web" or "KeepAutomation.Barcode.Windows" under your references.
Generating PLANET barcodes with Specified Orientation
Barcode Orientation is the barcode rotate angle. C# PLANET generator provides 4 type orientation: 0 degree, 90 degree, 180 degree and 270 degree.
using KeepAutomation.Barcode.Bean;
BarCode planet = new BarCode();
planet.Symbology = KeepAutomation.Barcode.Symbology.PLANET;
planet.CodeToEncode = "1234567890123";
planet.Orientation = KeepAutomation.Barcode.Orientation.Degree180;
planet.generateBarcodeToImageFile("../planet_1.gif");
Generating PLANET barcodes with Specified DPI
Barcode DPI is the barcode resolution in DPI (Dots per Inch).
using KeepAutomation.Barcode.Bean;
BarCode planet = new BarCode();
planet.Symbology = KeepAutomation.Barcode.Symbology.PLANET;
planet.CodeToEncode = "12345678901";
planet.DPI= 96;
planet.Orientation = KeepAutomation.Barcode.Orientation.Degree0;
planet.generateBarcodeToImageFile("../planet_2.png");
Generating PLANET barcodes with Different Image Formats
C# PLANET Generator support multiple image formats, such as GIF, TIFF, JPEG/JPG, BMP, PNG, etc.
using KeepAutomation.Barcode.Bean;
BarCode planet = new BarCode();
planet.Symbology = KeepAutomation.Barcode.Symbology.PLANET;
planet.CodeToEncode = "3456789012345";
planet.Orientation = KeepAutomation.Barcode.Orientation.Degree0;
planet.generateBarcodeToImageFile("../planet_3.gif");
You can change "gif" to other image formats like "png", "jpeg", "bmp", and "tiff".