.NET Data Matrix Generator
Barcode Data Matrix Generation in .NET, C#, ASP.NET, VB.NET
A Data Matrix code is a two-dimensional matrix barcode consisting of black and white "cells" or modules arranged in either a square or rectangular pattern. The information to be encoded can be text or raw data. Usual data size is from a few bytes up to 2 kilobytes. The length of the encoded data depends on the symbol dimension used. Error correction codes are added to increase symbol strength: even if they are partially damaged, they can still be read. A Data Matrix symbol can store up to 2,335 alphanumeric characters.
Data Matrix symbols are rectangular in shape and usually square, they are made of cells: little elements that represent bits. Depending on the situation a "light" module is a 0 and a "dark" module is a 1, or vice versa. Every Data Matrix is composed of two solid adjacent borders in an "L" shape (called the "finder pattern") and two other borders consisting of alternating dark and light "cells" or modules (called the "timing pattern"). Within these borders are rows and columns of cells encoding information. The finder pattern is used to locate and orient the symbol while the timing pattern provides a count of the number of rows and columns in the symbol. As more data is encoded in the symbol, the number of cells (rows and columns) will increase. Symbol sizes vary from 8��8 to 144��144.
.NET Barcode Supporting Types
Data Matrix,
PDF-417,
QR-Code
Codabar,
Code 2 of 5,
Code 11,
Code 39
Code 93,
Code 128,
EAN 8,
EAN 13
EAN 128,
Identcode,
Interleaved 2 of 5,
Leitcode
ISBN,
ISSN,
ITF14,
MSI Plessey
Onecode,
Planet,
Postnet,
RM4SCC
UPC-A,
UPC-E
In .NET Barcode Generator - How to create barcodes in C# Class?
Code39 barcode = new Code39(); barcode.Data("456456456"); barcode.createBarcode("C://csharp-barcode-code-39.png");
In .NET Barcode Generator - How to create barcodes in VB.NET class?
Dim barcode As Avapose.Barcode.Linear barcode = New Avapose.Barcode.Linear() barcode.Type = Avapose.Barcode.LinearType.CODE128 barcode.Data = "456456456" barcode.createBarcode("C://barcode-code39-vbnet.gif")
In C#, VB.NET Barcode Generator - How to draw barcodes to .NET Bitmap & Graphics objects?
Dim barcode As Avapose.Barcode.Linear barcode = New Avapose.Barcode.Linear() barcode.Type = Avapose.Barcode.LinearType.CODE128 barcode.Data = "456456456" barcode.createBarcode("your VB.NET Bitmap & Graphics object")
In .NET Barcode Generator - How to draw & encode barcodes into GIF, JPEG, PNG & BMP images?
Code39 barcode = new Code39(); barcode.Data("456456456"); barcode.createBarcode("C://csharp-barcode-code-39.png"); // you can change to .png, .jpg, .bmp