Code128

The Code128 is a high-density linear barcode symbology that encodes 128 ASCII characters. It is used for alphanumeric and numeric barcodes. The Code128 code represents the 128 ASCII values by shifting among three code sets (A, B, C). DynamicBarcode Creator represents the Code128 barcode through the Code128 class, as the following example illustrates.

Code128 barcode = new Code128("hello world", 100);
barcode.Draw(pngFilePath, 300, ImageFormat.Png);        
Dim barcode As Code128 = New Code128("hello world", 100)
barcode.Draw(pngFilePath, 300, ImageFormat.Png)

In this topic