Specific Parameters of Postal Barcode Types
Overview
Postal barcode standards have been developed to mitigate various limitations associated with 1D barcodes. In Postal barcodes, data encoding is based on varying the barcode height instead of the width of lines and spaces as in the case of 1D symbologies. In contrast, the information about horizontal parameters is ignored while reading Postal barcodes to avoid false-positive recognition.
Postal barcodes have been specifically developed for the needs of postal services in different countries; therefore, they are functionally similar to each other and have only minor differences. There are two types of Postal symbologies: 2-state barcodes types that can take only numerical digits as input and 4-state ones that encode both numerical digits and uppercase English letters. Using the same barcode type, the former can encode one bit of data, while the latter can encode two bits.
Aspose.BarCode for .NET enables generation and recognition of the following 2- and 4-state postal symbologies: Planet, Postnet, RM4SCC, Dutch KIX, OneCode, Australia Post, and Mailmark. These barcode types are discussed further in the article.
Barcode Height Settings
In Aspose.BarCode for .NET, the height and the width of postal barcodes are calculated automatically based on the value of the XDimension property. However, it is possible to manually adjust the barcode height regardless of the width by initializing the BarHeight property of class BarcodeParameters.
Sample Planet and RM4SCC barcode images provided below have been generated with different bar height settings.
Planet Barcode Height | ||
---|---|---|
Bar Height |
Is Set to None |
Is Set to 100 Pixels |
RM4SCC Barcode Height | ||
---|---|---|
Bar Height |
Is Set to None |
Is Set to 100 Pixels |
The following code snippet explains how to adjust the height of postal barcodes (Planet and RM4SCC ones).
BarcodeGenerator gen = null;
//set Planet barcode BarHeight none
gen = new BarcodeGenerator(EncodeTypes.Planet, "123456");
gen.Parameters.Barcode.XDimension.Pixels = 4;
gen.Save($"{path}PostalPlanetBarHeightNone.png", BarCodeImageFormat.Png);
//set RM4SCC barcode BarHeight none
gen = new BarcodeGenerator(EncodeTypes.RM4SCC, "123456");
gen.Parameters.Barcode.XDimension.Pixels = 4;
gen.Save($"{path}PostalRM4SCCBarHeightNone.png", BarCodeImageFormat.Png);
//set Planet barcode BarHeight 100 pixels
gen = new BarcodeGenerator(EncodeTypes.Planet, "123456");
gen.Parameters.Barcode.XDimension.Pixels = 4;
gen.Parameters.Barcode.BarHeight.Pixels = 100;
gen.Save($"{path}PostalPlanetBarHeight100Pixels.png", BarCodeImageFormat.Png);
//set RM4SCC barcode BarHeight 100 pixels
gen = new BarcodeGenerator(EncodeTypes.RM4SCC, "123456");
gen.Parameters.Barcode.XDimension.Pixels = 4;
gen.Parameters.Barcode.BarHeight.Pixels = 100;
gen.Save($"{path}PostalRM4SCCBarHeight100Pixels.png", BarCodeImageFormat.Png);
Bar Filling Settings
In Aspose.BarCode for .NET, developers can customize the appearance of Postal barcodes by setting bars to have an empty filling. It can be done using the FilledBars property of class BarcodeParameters. By default, the value of this property is set to True that results in generating barcode images with filled bars.
Planet and RM4SCC barcodes labels shown below have been created with different settings for the bar filling property.
Planet Bar Filling | ||
---|---|---|
Bar Filling Settings | Filled Bars |
Empty Bars |
RM4SCC Bar Filling | ||
---|---|---|
Bar Filling Settings | Filled Bars |
Empty Bars |
The following code sample illustrates how to manage bar filling settings for postal barcodes (Planet and RM4SCC ones).
BarcodeGenerator gen = null;
//set Planet barcode filled bars
gen = new BarcodeGenerator(EncodeTypes.Planet, "123456");
gen.Parameters.Barcode.XDimension.Pixels = 4;
gen.Save($"{path}PostalPlanetFilledBars.png", BarCodeImageFormat.Png);
//set RM4SCC barcode filled bars
gen = new BarcodeGenerator(EncodeTypes.RM4SCC, "123456");
gen.Parameters.Barcode.XDimension.Pixels = 4;
gen.Save($"{path}PostalRM4SCCFilledBars.png", BarCodeImageFormat.Png);
//set Planet barcode empty bars
gen = new BarcodeGenerator(EncodeTypes.Planet, "123456");
gen.Parameters.Barcode.XDimension.Pixels = 4;
gen.Parameters.Barcode.FilledBars = false;
gen.Save($"{path}PostalPlanetEmptyBars.png", BarCodeImageFormat.Png);
//set RM4SCC barcode empty bars
gen = new BarcodeGenerator(EncodeTypes.RM4SCC, "123456");
gen.Parameters.Barcode.XDimension.Pixels = 4;
gen.Parameters.Barcode.FilledBars = false;
gen.Save($"{path}PostalRM4SCCEmptyBars.png", BarCodeImageFormat.Png);
2-State Postal Standards
Aspose.BarCode for .NET supports the following 2-state postal standards: Planet and Postnet. Both of them can encode only numerical digits and contain an obligatory checksum. The length of a numerical set to be encoded is unlimited. Generation code samples and examples of Planet and Postnet barcode labels are provided below.
Planet Symbology
In the Planet symbology, each character is encoded by five bars so that three of them are full-length and two ones are half-length. The following code snippet shows how to generate a Planet barcode.
BarcodeGenerator gen = new BarcodeGenerator(EncodeTypes.Planet, "123456");
gen.Parameters.Barcode.XDimension.Pixels = 4;
gen.Parameters.Barcode.BarHeight.Pixels = 50;
gen.Parameters.Barcode.Postal.PostalShortBarHeight.Pixels = 20;
gen.Save($"{path}PostalPlanetBarcode.png", BarCodeImageFormat.Png);
Postnet Symbology
The Postnet barcode type implies encoding each character using five bars where three ones are full-length and two ones are half-length. The following code sample can be used to create a Postnet barcode.
BarcodeGenerator gen = new BarcodeGenerator(EncodeTypes.Postnet, "123456");
gen.Parameters.Barcode.XDimension.Pixels = 4;
gen.Parameters.Barcode.BarHeight.Pixels = 50;
gen.Parameters.Barcode.Postal.PostalShortBarHeight.Pixels = 20;
gen.Save($"{path}PostalPostnetBarcode.png", BarCodeImageFormat.Png);
Generation Specifics for 2-State Barcodes
In Aspose.BarCode for .NET, the generation of 2-state postal barcodes (Planet or Postnet) has several peculiarities related to the ways of handling incorrect input text and modifying the length of bars. These specifics are explained below.
Incorrect Input Text Handling
By default, in case of passing incorrect input text to the CodeText property (for Planet or Postnet barcodes, any symbols besides numerical ones), class BarcodeGenerator filters out the characters that do not match the required specification and creates a barcode based on the correct numerical digits only. However, if it is required to handle invalid symbols in CodeText by throwing an exception, the ThrowExceptionWhenCodeTextIncorrect property needs to be set to True, as illustrated in the code snippet given below. As a result, the following exceptions will be thrown: “Exception: Symbology Planet - codetext is invalid”; “Exception: Symbology Postnet - codetext is invalid”.
BarcodeGenerator gen = null;
gen = new BarcodeGenerator(EncodeTypes.Planet, "1234567WRONG");
gen.Parameters.Barcode.ThrowExceptionWhenCodeTextIncorrect = true;
try
{
gen.GenerateBarCodeImage();
}
catch (Exception e)
{
Console.WriteLine(e.Message);
}
gen = new BarcodeGenerator(EncodeTypes.Postnet, "1234567WRONG");
gen.Parameters.Barcode.ThrowExceptionWhenCodeTextIncorrect = true;
try
{
gen.GenerateBarCodeImage();
}
catch (Exception e)
{
Console.WriteLine(e.Message);
}
Short Bar Height Settings
In general, 2-state barcodes are composed of long and short bars so that the latter is usually defined as the half-length of the former. In Aspose.BarCode for .NET, it is possible to customize the height of short bars manually by initializing the PostalShortBarHeight property of class PostalParameters.
Sample barcode labels demonstrated below have been generated with different short bar settings.
Short Bar Height Settings |
Is Set to 10 Pixels |
Is Set to 30 Pixels |
---|---|---|
The following code snippet is provided to explain how to customize the length of short bars in 2-state postal barcodes.
BarcodeGenerator gen = null;
//set Planet barcode ShortBarHeight 10 pixels
gen = new BarcodeGenerator(EncodeTypes.Planet, "123456");
gen.Parameters.Barcode.XDimension.Pixels = 4;
gen.Parameters.Barcode.BarHeight.Pixels = 50;
gen.Parameters.Barcode.Postal.PostalShortBarHeight.Pixels = 10;
gen.Save($"{path}PostalPlanetShortBarHeight10Pixels.png", BarCodeImageFormat.Png);
//set Planet barcode ShortBarHeight 30 pixels
gen = new BarcodeGenerator(EncodeTypes.Planet, "123456");
gen.Parameters.Barcode.XDimension.Pixels = 4;
gen.Parameters.Barcode.BarHeight.Pixels = 50;
gen.Parameters.Barcode.Postal.PostalShortBarHeight.Pixels = 30;
gen.Save($"{path}PostalPlanetShortBarHeight30Pixels.png", BarCodeImageFormat.Png);
4-State Postal Standards
Aspose.BarCode for .NET supports the following 4-state postal symbologies: RM4SCC, Dutch KIX, OneCode, Australia Post, and Mailmark. In 4-state barcodes, four types of bars are specified to encode information: tracker (T), descender (D), ascender (A), and full (F) bars. Each input character is encoded using four separate bars so that two bits can be encoded by one digit. Most of the 4-state standards are based on the RM4SCC barcode type and accordingly, can encode numerical digits and uppercase English letters. All these postal standards besides Dutch KIX include a checksum. Moreover, Australia Post and Mailmark provide the possibility to recover information owing to Reed-Solomon error correction. The specificities of 4-state symbology generation in Aspose.BarCode for .NET are discussed further in the article.
RM4SCC Symbology
The RM4SCC symbology can encode numerical digits and uppercase English letters. Each character in a barcode is encoded using four bars so that two of them are extended upwards and the other two ones - downwards. Different combinations provide 36 possible symbols: 10 digits and 26 letters. This symbology requires obligatory check digit calculation that is based on the modulo 6 algorithm.
The following code sample shows how to generate RM4SCC barcodes.
BarcodeGenerator gen = new BarcodeGenerator(EncodeTypes.RM4SCC, "123456ASPOSE");
gen.Parameters.Barcode.XDimension.Pixels = 4;
gen.Parameters.Barcode.BarHeight.Pixels = 50;
gen.Save($"{path}PostalRM4SCCBarcode.png", BarCodeImageFormat.Png);
Dutch KIX Symbology
The Dutch KIX symbology is utilized by the Royal Dutch TPG Post of Netherlands to perform automated sorting of postal codes and mails. Its specification is similar to that of the RM4SCC symbology and thus can be used to encode numerical digits and uppercase English letters. However, it does not have a checksum, as well as start and stop digits.
The following code snippet illustrates how to create Dutch KIX barcodes.
BarcodeGenerator gen = new BarcodeGenerator(EncodeTypes.DutchKIX, "123456ASPOSE");
gen.Parameters.Barcode.XDimension.Pixels = 4;
gen.Parameters.Barcode.BarHeight.Pixels = 50;
gen.Save($"{path}PostalDutchKIXBarcode.png", BarCodeImageFormat.Png);
OneCode Symbology
The OneCode standard can be used to encode messages composed of numerical digits with the length fixed to 20, 25, 29, or 31 digits into 65-bar barcodes. It includes an eleven-bit cyclic redundancy check to recognize errors but does not support error correction.
OneCode Standard |
20 Digits |
25 Digits |
29 Digits |
31 Digits |
---|---|---|---|---|
The following code sample explains how to generate OneCode barcodes.
BarcodeGenerator gen = null;
//create OneCode with 20 digits
gen = new BarcodeGenerator(EncodeTypes.OneCode, "12345678901234567890");
gen.Parameters.Barcode.XDimension.Pixels = 4;
gen.Parameters.Barcode.BarHeight.Pixels = 50;
gen.Save($"{path}PostalOneCodeBarcode20Digits.png", BarCodeImageFormat.Png);
//create OneCode with 25 digits
gen = new BarcodeGenerator(EncodeTypes.OneCode, "1234567890123456789012345");
gen.Parameters.Barcode.XDimension.Pixels = 4;
gen.Parameters.Barcode.BarHeight.Pixels = 50;
gen.Save($"{path}PostalOneCodeBarcode25Digits.png", BarCodeImageFormat.Png);
//create OneCode with 29 digits
gen = new BarcodeGenerator(EncodeTypes.OneCode, "12345678901234567890123456789");
gen.Parameters.Barcode.XDimension.Pixels = 4;
gen.Parameters.Barcode.BarHeight.Pixels = 50;
gen.Save($"{path}PostalOneCodeBarcode29Digits.png", BarCodeImageFormat.Png);
//create OneCode with 31 digits
gen = new BarcodeGenerator(EncodeTypes.OneCode, "1234567890123456789012345678901");
gen.Parameters.Barcode.XDimension.Pixels = 4;
gen.Parameters.Barcode.BarHeight.Pixels = 50;
gen.Save($"{path}PostalOneCodeBarcode31Digits.png", BarCodeImageFormat.Png);
Australia Post Symbology
In the Australia Post symbology, input messages include specific 2-digit format control code (FCC) fields and 8-digit sorting code (SC) fields. FCC fields are used to indicate one of three available barcode types with different fixed lengths: 37, 52, or 67 bars. Depending on FCC, barcodes may contain a customer information (CI) field that identifies one of the encoding types that support numerical or alphanumeric symbols. They are predefined in the AustralianPostEncodingTable property. Customer information can occupy 16 bars in 52-length barcodes or 31 bars in 67-length ones. The Australia Post standard contains a checksum and information used for Reed-Solomon data recovery.
Input messages can be defined using one of the following formats specified in the table below.
FCC Field |
Sorting Code Field |
Customer Information Field |
---|---|---|
11 | 8 digits | None |
59 | 8 digits | 16 bars |
62 | 8 digits | 31 bars |
The value of the FCC field can be defined using the AustralianPostEncodingTable property that needs to be initialized with one of the values from the CustomerInformationInterpretingType enumeration (as represented in the table below).
Australia Post Encoding Table | Supported Symbols |
---|---|
CTable | 0-9, A-Z, a-z, space symbol, and # |
NTable | 0-9 |
Other | 0, 1, 2, and 3 that correspond to H, A, D, and T states, respectively |
Barcode images demonstrated below have been generated using different setings for the FCC field.
Australia Post Standards |
FCC 11 |
FCC 59 Table |
FCC 62N Table |
FCC 62C Table |
FCC 62C Other Table |
---|---|---|---|---|---|
The following code snippet explains how to generate Australia Post barcodes with different settings.
BarcodeGenerator gen = null;
//create AustraliaPost FCC 11
gen = new BarcodeGenerator(EncodeTypes.AustraliaPost, "1101234567");
gen.Parameters.Barcode.XDimension.Pixels = 4;
gen.Parameters.Barcode.BarHeight.Pixels = 50;
gen.Save($"{path}PostalAustraliaPostFCC11.png", BarCodeImageFormat.Png);
//create AustraliaPost FCC 59 NTable
gen = new BarcodeGenerator(EncodeTypes.AustraliaPost, "590123456701234");
gen.Parameters.Barcode.XDimension.Pixels = 4;
gen.Parameters.Barcode.BarHeight.Pixels = 50;
gen.Parameters.Barcode.AustralianPost.AustralianPostEncodingTable = CustomerInformationInterpretingType.NTable;
gen.Save($"{path}PostalAustraliaPostFCC59NTable.png", BarCodeImageFormat.Png);
//create AustraliaPost FCC 62 NTable
gen = new BarcodeGenerator(EncodeTypes.AustraliaPost, "620123456701234");
gen.Parameters.Barcode.XDimension.Pixels = 4;
gen.Parameters.Barcode.BarHeight.Pixels = 50;
gen.Parameters.Barcode.AustralianPost.AustralianPostEncodingTable = CustomerInformationInterpretingType.NTable;
gen.Save($"{path}PostalAustraliaPostFCC62NTable.png", BarCodeImageFormat.Png);
//create AustraliaPost FCC 62 CTable
gen = new BarcodeGenerator(EncodeTypes.AustraliaPost, "6201234567ASPOSE");
gen.Parameters.Barcode.XDimension.Pixels = 4;
gen.Parameters.Barcode.BarHeight.Pixels = 50;
gen.Parameters.Barcode.AustralianPost.AustralianPostEncodingTable = CustomerInformationInterpretingType.CTable;
gen.Save($"{path}PostalAustraliaPostFCC62CTable.png", BarCodeImageFormat.Png);
//create AustraliaPost FCC 62
gen = new BarcodeGenerator(EncodeTypes.AustraliaPost, "6201234567321032103210");
gen.Parameters.Barcode.XDimension.Pixels = 4;
gen.Parameters.Barcode.BarHeight.Pixels = 50;
gen.Parameters.Barcode.AustralianPost.AustralianPostEncodingTable = CustomerInformationInterpretingType.Other;
gen.Save($"{path}PostalAustraliaPostFCC62OtherTable.png", BarCodeImageFormat.Png);
Mailmark Symbology
The Mailmark symbology has been developed by Royal Mail of the United Kingdom. Its specification is similar to that of RM4SCC but has the predefined data format requirements and does not provide extra space for the customer-specific content. This standard allows encoding numerical digits, uppercase English letters, and space. Moreover, barcodes contain a checksum and information to perform data recovery using Reed-Solomon error correction.
Mailmark supports the following options:
- Type L - encodes 26 characters
- Type C - encodes 22 characters
Mailmark Standards |
Type C |
Type L |
---|---|---|
The following code sample shows how to create Mailmark barcodes of different types.
BarcodeGenerator gen = null;
//create Mailmark C Type
gen = new BarcodeGenerator(EncodeTypes.Mailmark, "21B2254800659JW5O9QA6Y");
gen.Parameters.Barcode.XDimension.Pixels = 4;
gen.Parameters.Barcode.BarHeight.Pixels = 50;
gen.Save($"{path}PostalMailmarkCType.png", BarCodeImageFormat.Png);
//create Mailmark L Type
gen = new BarcodeGenerator(EncodeTypes.Mailmark, "41038422416563762EF61AH8T");
gen.Parameters.Barcode.XDimension.Pixels = 4;
gen.Parameters.Barcode.BarHeight.Pixels = 50;
gen.Save($"{path}PostalMailmarkLType.png", BarCodeImageFormat.Png);