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 |
Data Matrix Barcodes
Data Matrix is a two-dimensional barcode specification that uses black and white squares arranged in a rectangular or square pattern.
The size of Data Matrix symbols typically varies between 10x10 and 144x144 squares. The Data Matrix specification lets you encode more than 3,000 bytes in a single symbol.
C# Sample Code
void DrawDataMatrix(string text, Graphics g, Rectangle rect)
{
DataMatrix dm = new CommStudio.Barcodes.DataMatrix();
dm.Render(text, g, rect);
}
VB.NET Sample Code
Sub DrawDataMatrix(text As String, g As Graphics, rect As Rectangle) Dim dm As New CommStudio.Barcodes.DataMatrix dm.Render(text.ToString(), g, rect) End Sub
