Planet C# Data Encoding- Overview
For KA.PLANET Barcode Generator in C#, KeepAutomation provides sample code for PLANET generation and size & image setting using Visual C#.NET.
When generating a
PLANET image, you need to make clear two things first:
Q1: What kind of data can be encoded into a Planet image? Numeric or alphabetic?
A: Planet is a numeric barcode symbology which encodes numeric digits 0-9.
barcode generator in vb.net 2010,
generate barcode in c# windows application,
asp.net barcode font,
c# create barcode,
barcode font generator vb.net,
barcode scanner project in vb net
Q2: How many data digits can you input?
A: A Planet barcode can encode 11 digits or 13 digits, excluding the last checksum digit, which will be automatically added by KeepAutomation Planet C# Generator.
crystal reports barcode 128 download,
qr code generator c# library,
crystal reports 8.5 qr code,
c# barcode ean 128,
c# print document barcode,
print barcode crystal report using c#
PlANET, is also named as USPS PLANET Barcode, USPS Confirms Service Barcode.
Planet |
Comments |
Encodable Character Set |
0, 1, 2, 3, 4, 5, 6, 7, 8, 9 |
Data Length |
11 digits / 13 digits |
Example: |
"9966332255881"
|
Planet C# Data Encoding - Products
KeepAutomation.com provides a variety of best-quality C# Planet generators, with which you can easily input valid data and create scannable Planet barcodes with high-quality.
Planet Barcode Generator for ASP.NET - Generating & creating Planet in ASP.NET web applications
Planet Barcode Generator for WinForms - Creating Planet in .NET Windows forms
Planet Barcode Generator for Crystal Reports - Inserting and adding Planet barcodes in Crystal Reports
Planet Barcode Generator for Reporting Services - Printing and drawing Planet barcodes in SQL Reporting Services
Planet Barcode Reader for C# - Read and scan Planet barcodes in C sharp
Planet C# Data Encoding - Install
To encode valid data for a Planet and generate scannable Planet barcode images, first you need to download and install KeepAutomation Planet barcode generator for C#. Now please follow the simple steps below!
1. Download KeepAutomation Planet barcode generator for C# and unzip
2. Open Microsoft Visual Studio, choose "Add Reference" in "Project".
3. Browse to select KeepAutomation.Barcode.Windows.dll or KeepAutomation.Barcode.Web.dll and click OK.
4. Now you will see "KeepAutomation.Barcode.Web" or "KeepAutomation.Barcode.Windows" under your references
Congratulations! Now you have successfully added KeepAutomation Planet Barcode Generator for C# into your .NET project, please check out on the following examples to correctly input valid data and create scannable Planet barcodes using C# class.
Planet C# Data Encoding - Sample Code
How to Encode Planet with Valid Data Character
Valid data character set for Planet: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9.
Here's a sample code on how to encode valid Planet data and create valid Planet image in C#.
BarCode planet = new BarCode();
planet.Symbology = Symbology.Planet;
planet.CodeToEncode = "1234567890123";
planet.generateBarcodeToImageFile("C://csharp_planet_eg1.png");
How to Encode Planet with Valid Data Length
Planet can only encode 11 digits or 13 digits, with the last checksum digit automatically added by KeepAutomation Planet C# generator.
Here's a sample code on how to encode Planet image with valid data length using C#.NET.
For an 11-digit Planet Data Encoding:
BarCode planet = new BarCode();
planet.Symbology = Symbology.Planet;
planet.CodeToEncode = "11447788551";
planet.generateBarcodeToImageFile("C://csharp_planet_eg2.png");
For a 13-digit Planet Data Encoding:
BarCode planet = new BarCode();
planet.Symbology = Symbology.Planet;
planet.CodeToEncode = "1155995511123";
planet.generateBarcodeToImageFile("C://csharp_planet_eg3.png");