100% Standards Compliant
CommStudio provides a 100% accurate implementation of industry-standard barcode specifications.
Bar codes generated by CommStudio are completely device independent and can work in any resolution on a wide variety of printers. CommStudio supports all popular linear and 2D barcode encodings:
| PDF 417 | DataMatrix | Codabar | Code 39 and 93 | Code 128 |
| EAN 8 and 13 | Interleaved 2 of 5 | MSI Plessey | PostNet | UPC A and E |
Interleaved 2 of 5 Barcodes
Interleaved 2 of 5 is mainly used on 35mm film to identify the manufacturer, number of exposures, and film type.
There's no set number of digits, and each digit is encoded through a combination of wide and narrow bars.
C# Sample Code
void DrawInterleaved2of5(string text, Graphics g, Rectangle rect)
{
Barcode bc = new CommStudio.Barcodes.Barcode(BarcodeStyle.Interleaved2of5);
bc.DisplayCaption = true;
bc.Render(text, g, rect);
}
VB.NET Sample Code
Sub DrawInterleaved2of5(text As String, g As Graphics, rect As Rectangle) Dim bc As New CommStudio.Barcodes.Barcode(BarcodeStyle.Interleaved2of5) bc.DisplayCaption = True bc.Render(text, g, rect) End Sub