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 |
POSTNET Barcodes
POSTNET is a bar code symbology used by the US Postal Service to encode ZIP codes on mail items.
Each digit is encoded using a combination of five half-height or full-height vertical bars. There is a full-height vertical bar to the left and right, and a check digit after the ZIP code (5 digits) or the ZIP+4 code (9 digits).
C# Sample Code
void DrawPostnet(string text, Graphics g, Rectangle rect)
{
Barcode bc = new CommStudio.Barcodes.Barcode(BarcodeStyle.Postnet);
bc.DisplayCaption = true;
bc.Render(text, g, rect);
}
VB.NET Sample Code
Sub DrawPostnet(text As String, g As Graphics, rect As Rectangle) Dim bc As New CommStudio.Barcodes.Barcode(BarcodeStyle.Postnet) bc.DisplayCaption = True bc.Render(text, g, rect) End Sub