MSI Barcode (Modified Plessey)
The MSI barcode, represented by the MsiBarcode class, is developed based on the Plessey code and encodes digits from 0 to 9.
The following example illustrates.
MsiBarcode barcode = new MsiBarcode("123456789", 100);
barcode.Draw(pngFilePath, 300, ImageFormat.Png);
Dim barcode As MsiBarcode = New MsiBarcode("123456789", 100)
barcode.Draw(pngFilePath, 300, ImageFormat.Png)