Code 11

Code 11 is a discrete symbol, primarily used in the telecommunications industry, that encodes digits from zero to nine and includes a '-' (dash) character. Each character contains a specific set of bars and spaces. A twelfth represents the start/stop character and is usually printed as "*". Code 11 can also include one or two check digits with the barcode value per the specification.

The Code11 class represents the Code 11 barcode, as the following example illustrates.

Code11 barcode = new Code11("12345678", 50);
barcode.Draw(pngFilePath, 300, ImageFormat.Png);       
Dim barcode As Code11 = New Code11("12345678", 50)
barcode.Draw(pngFilePath, 300, ImageFormat.Png)

In this topic