Code93

The Code93 class represents the Code93 barcode. The Code93 barcode is a variable length, discrete barcode symbology that provides a higher density and more data security than a Code39 barcode. The Canada Post uses this barcode to ensure supplementary delivery information. The following example illustrates.

Code93 barcode = new Code93("1234567890");
barcode.Draw(pngFilePath, 300, ImageFormat.Png);       
Dim barcode As Code93 = New Code93("1234567890")
barcode.Draw(pngFilePath, 300, ImageFormat.Png)

In this topic