Codabar
The Codabar barcode is a less-commonly used, discrete, self-checking linear barcode symbology. DynamicBarcode Creator represents Cobabar via the Codabar class. It encodes digits from zero to nine, the following special symbols
- $ : / . +
along with four sets of start and stop characters.
A/T B/M C/* D/E
The following example illustrates.
Codabar barcode = new Codabar("A1234A", 100);
barcode.Draw(pngFilePath, 300, ImageFormat.Png);
Dim barcode As Codabar = New Codabar("A1234A", 100)
barcode.Draw(pngFilePath", 300, ImageFormat.Png)