KA.Barcode for .NET Suite
Guide for Encoding Numeric-only Data in Identcode
Complete C#.NET source code to generate, print Identcode images using Barcode Generator for .NET Control
Identcode C# Data Encoding- Overview

Besides data encoding, KeepAutomation also provides sample code for Identcode Barcode size & image setting using C#.NET.

When generating an Identcode image, you need to make clear two things first:

Q1: What kind of data can be encoded into an Identcode image? Numeric or alphabetic?

A: Identcode is a numeric barcode symbology which encodes numeric digits 0-9.

progress bar code in c# windows application, how to print barcode using prn file in c#, barcode reader using c#, barcode reader c# open source, gs1 barcode parser c#, how to print barcode in crystal report using c#

Q2: How many data digits can you input?

A: An Identcode barcode can only encode 11 digits, excluding the last checksum digit, which will be automatically added by KeepAutomation Identcode C# Generator.

rdlc qr code, barcode print in asp net, how to use barcode scanner in c# windows application, crystal reports 2008 qr code, c# code 128 reader, how to print barcode labels in crystal report

Identcode, is also named as Deutsche Post Identcode Barcode, German Postal 2 of 5 Identcode, Deutsche Post AG Identcode, Deutsche Frachtpost Identcode, CodeIdentcode, Deutsche Post AG.
Identcode Comments
Encodable Character Set 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
Data Length 11 digits
Example: "33669922558"



Identcode C# Data Encoding - Products

KeepAutomation.com provides a variety of best-quality C# Identcode generators, with which you can easily input valid data and create scannable Identcode barcodes with high-quality.

Identcode Barcode Generator for ASP.NET - Generating & creating Identcode in ASP.NET web application

Identcode Barcode Generator for WinForms - Creating Identcode in .NET Windows forms

Identcode Barcode Generator for Crystal Reports - Inserting and adding Identcode barcodes in Crystal Reports

Identcode Barcode Generator for Reporting Services - Printing and drawing Identcode barcodes in SQL Reporting Services

Identcode Barcode Reader for .NET - Read and scan Identcode barcodes in .NET


Identcode C# Data Encoding - Install

To encode valid data for an Identcode and generate scannable Identcode barcode images, first you need to download and install KeepAutomation Identcode barcode generator for C#. Now please follow the simple steps below!

1. Download KeepAutomation Identcode 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 Identcode Barcode Generator for C# into your .NET project, please check out on the following examples to correctly input valid data and create scannable Identcode barcodes using C# class.



Identcode C# Data Encoding - Sample Code

How to Encode Identcode with Valid Data Character

Valid data character set for Identcode: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9.

Here's a sample code on how to encode valid Identcode data and create valid Identcode image in C#.

BarCode identcode = new BarCode();

identcode.Symbology = Symbology.ITF14;

identcode.X = 1;

identcode.ImageFormat = ImageFormat.Png;

identcode.CodeToEncode = "11111222225";

identcode.generateBarcodeToImageFile("C://csharp_identcode_eg1.png");



How to Encode Identcode with Valid Data Length

Identcode can only encode 11 numeric digits, excluding the last checksum digit automatically added by KeepAutomation Identcode C# generator.

Here's a sample code on how to encode Identcode image with valid data length using C#.NET.

BarCode identcode = new BarCode();

identcode.Symbology = Symbology.ITF14;

identcode.X = 2;

identcode.ImageFormat = ImageFormat.Png;

identcode.CodeToEncode = "55555111112";

identcode.generateBarcodeToImageFile("C://csharp_identcode_eg2.png");