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 |
PDF417 Barcodes
PDF417 is a two-dimensional barcode specification originally developed by Symbol Technologies.
Technically, PDF417 is a stacked linear bar code symbology. It can be used to encode a large amount of data and includes built-in error correction.
C# Sample Code
void DrawPdf417(string text, Graphics g, Rectangle rect)
{
Pdf417 pdf417 = new CommStudio.Barcodes.Pdf417();
pdf417.Render(text, g, rect);
}
VB.NET Sample Code
Sub DrawPdf417(text As String, g As Graphics, rect As Rectangle) Dim pdf417 As New CommStudio.Barcodes.Pdf417 pdf417.Render(text.ToString(), g, rect) End Sub
