.NET Data Matrix Generator SDK Library for C#, VB.NET, ASP.NET

Generating & Printing Data Matrix in .NET, C#, ASP.NET, VB.NET using .NET Data Matrix 2D Barcodes Generator


  • Generate Data Matrix 2D Barcodes in C#, VB.NET class & console applications
  • Generate Data Matrix in ASP.NET web applications
  • Printing Data Matrix in .NET Windows Forms applications
  • Create & Print Data Matrix in Reporting Service & Crystal Reports
  • Compatible with ISO / IEC 16022 (2nd edition 2006-09-15)
  • High quality Data Matrix Bar Code images in GIF, PNG, JPEG & BITMAP
  • Completely developed in C#.NET
  • Mature Data Matrix barcode generating components used by 1000+ clients


Index
 

.NET Barcode Data Matrix Generator Introduction

Generating Barcode Data Matrix in .NET is one of the functions in OnBarcode's .NET Barcode Generators, which supports creating & printing Data Matrix and 30+ other linear & 2D bar codes for C#, VB.NET & ASP.NET applications.

OnBarcode develops several .NET Barcode Generation components for different .NET development environments:

Barcode Generation in ASP.NET - Creating barcodes in ASP.NET Web applications
Barcode Generator in C# - Generate barcode in Visual C#.NET applications
Barcode Generator in VB.NET - Generate barcode in Visual Basic .NET applications
Barcode Generation in Windows Forms - Printing barcodes in C#, VB.NET Windows Forms applications
Barcode Generation in Reporting Service - Drawing barcodes in Microsoft Reporting Service 2005 & 2008

 

.NET Data Matrix Generator - Barcode Data Matrix Introduction

Data Matrix 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.

 

.NET Data Matrix Generation - Data Matrix Valid Data Scope

.NET Data Matrix Generator encodes:

  • all 128 characters of ASCII

  • values 128-255 in accordance with ISO 8859-1. There are referred to as extended ASCII.



.NET Data Matrix Generator Online Demo



 

How to generate & print Data Matrix in Visual Studio C# or VB.NET class?

Generating barcode Data Matrix in C# Class example (C# Data Matrix Generator Complete Demo Source Code)

	        DataMatrix datamatrix = new DataMatrix();
	        datamatrix.Data = "0123456789";
	        datamatrix.X = 3;
	        
	        // Generate Data Matrix and encode barcode to gif format
	        datamatrix.Format = ImageFormat.Gif;
	        datamatrix.drawBarcode("c#-datamatrix.gif");
	        
	        // Print Data Matrix to C# Bitmap object
	        Bitmap datamatrixBitmap = datamatrix.drawBarcode();


Generating barcode Data Matrix in VB.NET Class example (VB.NET Data Matrix Generator Complete Demo Source Code)

	        Dim datamatrix As OnBarcode.Barcode.DataMatrix
	        datamatrix = New OnBarcode.Barcode.DataMatrix()
	        datamatrix.Data = "0123456789"
	        datamatrix.X = 3
	        
	        // Generate Data Matrix and encode barcode to png format
	        datamatrix.Format = ImageFormat.Png
	        datamatrix.drawBarcode("vbnet-datamatrix.png")
	        
	        // Print Data Matrix to vb.net Bitmap object
	        Dim datamatrixBitmap As Bitmap
	        datamatrixBitmap = datamatrix.drawBarcode();


Data Matrix Barcode

 

How to create & draw Data Matrix image in ASP.NET aspx or html pages without ASP.NET Barcode Controller?

  • Under demo package, copy barcode folder and its contents to your IIS, and create a new virtual directory.

  • Restart IIS, navigate to http://YourDomain:Port/barcode/datamatrix.aspx?DATA=0123456789

  • To create barcode Data Matrix image in html or aspx pages, you can insert a image tag (img) into your page.
    For example, <img src="http://YourDomain:Port/barcode/datamatrix.aspx?DATA=0123456789" />

 

How to create & encode barcode Data Matrix to image file (GIF, JPEG, PNG, BMP)?

Creating barcode Data Matrix in C# Class example

	        DataMatrix datamatrix = new DataMatrix();
	        datamatrix.Data = "0123456789";
	        
	        // Create Data Matrix and encode barcode to Jpeg format
	        datamatrix.Format = ImageFormat.Jpeg;
	        datamatrix.drawBarcode("C://csharp-datamatrix.jpg");


Creating barcode Data Matrix in VB.NET Class example

	        Dim datamatrix As OnBarcode.Barcode.DataMatrix
	        datamatrix = New OnBarcode.Barcode.DataMatrix()
	        datamatrix.Data = "0123456789"
	        
	        // Create Data Matrix and encode barcode to Jpeg format
	        datamatrix.Format = ImageFormat.Jpeg
	        datamatrix.drawBarcode("C://vbnet-datamatrix.jpg")
 

How to generate GS1 compatible Data Matrix?

  1. You need set property FNC1 value to FNC1.FNC1_1ST_POS (1), to indicate that the generated data matrix is GS1 compatible.


  2. You can use 2 methods to input GS1 AI elements

    1. Parenthesis: to use parenthesis to indicate an AI code. Eg. (01)12345


    2. Escape Tilde: to use ~ai* to indicate an AI while * is digit number of the AI (from 2 ~ 7). Eg. ~ai20112345 same as (01)12345

      Note:

      1. To use escape tilde, you need set processTilde property to true.

      2. You can not use parenthesis character in the data message, except, user enables ProcessTilde flag and use ~040 and ~041 to replace '(' and ')' Parenthesis must in pair, otherwise, the output would be incorrect.

 

Data Matrix Reader Programming and Macro 05, Macro 06

To encode Data Matrix reader programming, macro 05 and macro 06, you need set ProcesTilde property to true, and add one of the following message to the beginning of the encoding Data Matrix data

  1. ~rp: Reader Programming (for ASCII mode and Auto mode only)

    This should be located at the beginning of the encoding data, e.g. data = "~rpABCD1234".

  2. ~m5: 05 Macro (for ASCII mode and Auto mode only)

    This should be located at the beginning of the encoding data, e.g. data = "~m5ABCD1234".

  3. ~m6: 06 Macro (for ASCII mode and Auto mode only)

    This should be located at the beginning of the encoding data, e.g. data = "~m6ABCD1234".

 

In Visual Studio C# & VB.NET, howto draw barcode DataMatrix to .NET Graphics, Stream & Bitmap objects?

To draw & print barcode Data Matrix to C# objects:

	        public void drawBarcode(Graphics graphics);
	
	        public void drawBarcode(string filename);
	
	        public Bitmap drawBarcode();
	
	        public void drawBarcode(Stream fileStream);


To draw & print barcode Data Matrix to VB.NET objects:

	        Public Sub drawBarcode(ByRef graphics As Graphics)
	
	        Public Sub drawBarcode(ByVal filename As String)
	
	        Public Function drawBarcode() As Bitmap
	
	        Public Sub drawBarcode(ByRef fileStream As Stream)

 

Generating & printing barcode Data Matrix using .NET Barcode WinForms Controller

  1. Add OnBarcode.Barcode.WinForms.dll to .net project reference

  2. Add .NET Barcode to .NET Visual Studio Toolbox

    1. Right click .NET Visual Studio Toolbox, select menu Choose Items...

    2. In "Choose Toolbox Items" form, click button "Browse...", and select dll OnBarcode.Barcode.WinForms.dll

    3. After selection, you will find four items under "Components" section: LinearWinForm, DataMatrixWinForm, PDF417WinForm, and QRCodeWinForm.
 

Creating & drawing barcode Data Matrix using ASP.NET Barcode Web Form Controller

  1. Add OnBarcode.Barcode.ASPNET.dll to asp.net project reference

  2. Add .NET Barcode to .NET Visual Studio Toolbox

    1. Right click .NET Visual Studio Toolbox, select menu Choose Items...

    2. In "Choose Toolbox Items" form, click button "Browse...", and select dll OnBarcode.Barcode.ASPNET.dll

    3. After selection, you will find four items under "Components" section: LinearWebForm, DataMatrixWebForm, PDF417WebForm, and QRCodeWebForm.


 

.NET Data Matrix Generator - Barcode Properties


Category Properties Value Comments
Basic Property: Data
URL: DATA
Type: string
Default: "DataMatrix"
Barcode value to encode

Data Matrix Valid Data Char Set:
  • ASCII values 0 - 127 in accordance with the US national version of ISO/IEC 646
    NOTE: This version consists of the G0 set of ISO/IEC 646 and the C0 set of ISO/IEC 6429 with values 28 - 31 modified to FS, GS, RS and US respectively.
  • ASCII values 128 - 255 in accordance with ISO 8859-1. These are referred to as extended ASCII.

 
Data Matrix
Special
Property: ProcessTilde
URL: PROCESS-TILDE
Type: bool
Default: true
Set the ProcessTilde property to true, if you want use the tilde character "~" to specify special characters in the input data. Default is true.
  • 1-byte character: ~0dd/~1dd/~2dd (character value from 000 ~ 255); ASCII character '~' is presented by ~126
    Strings from "~256" to "~299" are unused
  • 2-byte character (Unicode): ~6ddddd (character value from 00000 ~ 65535)
    Strings from "~665536" to "~699999" are unused
  • for GS1 AI Code:
    ~ai2: AI with 2 digits
    ~ai3: AI with 3 digits
    ~ai4: AI with 4 digits
    ~ai5: AI with 5 digits
    ~ai6: AI with 6 digits
    ~ai7: AI with 7 digits
  • ECI: ~7dddddd (valid value of dddddd from 000000 to 999999)
  • ~rp: Reader Programming (for ASCII mode and Auto mode only)
    This should be located at the beginning of the encoding data, e.g. data = "~rpABCD1234".
  • ~m5: 05 Macro (for ASCII mode and Auto mode only)
    This should be located at the beginning of the encoding data, e.g. data = "~m5ABCD1234".
  • ~m6: 06 Macro (for ASCII mode and Auto mode only)
    This should be located at the beginning of the encoding data, e.g. data = "~m6ABCD1234".
Property: DataMode
URL: DATA-MODE
Type: DataMatrixDataMode

Default: DataMatrixDataMode.
ASCII (1)
Data Matrix data encoding mode.

Valid values are:
  • DataMatrixDataMode.Auto (0): Barcode library will decide the best data mode for you.
  • DataMatrixDataMode.ASCII (1): it is used to encode data that mainly contains ASCII characters (0-127). This is the default encoding format by Barcode Library.
  • DataMatrixDataMode.C40 (2): it is used to encode data that mainly contains numeric and upper case characters.
  • DataMatrixDataMode.Text (3): it is used to encode data that mainly contains numeric and lower case characters.
  • DataMatrixDataMode.X12 (4):it is used to encode the standard ANSI X12 electronic data interchange characters.
  • DataMatrixDataMode.Edifact (5): it is used to encode 63 ASCII values (values from 32 to 94) plus an Unlatch character (binary 011111).
  • DataMatrixDataMode.Base256 (6): it is used to encode 8 bit values.
Property: FormatMode
URL: FORMAT-MODE
Type: DataMatrixFormatMode

Default: DataMatrixFormatMode.
Format_10X10 (0)
Default is DataMatrixFormatMode.Format_10X10 (0). Specifies the Data Matrix Format to use on that symbology. Valid values see enum DataMatrixFormatMode.Format_*X*;
Property: FNC1
URL: FNC1
Type: FNC1

Default: FNC1.
FNC1_NONE (0)
To encode GS1 compatible Data Matrix barcode, you need set FNC1 value to FNC1.FNC1_1ST_POS (1).
Property: StructuredAppend
URL: STRUCTURED-APPEND
Type: bool
Default: false
Set StructuredAppend property to true, then Structured Append is enabled.
Property: SymbolCount
URL: SYMBOLE-COUNT
Type: int
Default: 0
Set SymbolCount property to the number of total symbols which make the sequence.
Property: SymbolIndex
URL: SYMBOL-INDEX
Type: int
Default: 0
Set SymbolIndex property to the position of current symbol in the secuence (Start with 0).
Property: FileId
URL: FILE-ID
Type: int
Default: 0
Set FileId property to be identified to the same file.
 
Barcode
Size
Related
Property: AutoResize
URL: AUTO-RESIZE
Type: bool
Default: false
Auto resize the generated barcode image
Property: BarAlignment
URL: BAR-ALIGNMENT
Type: int
Default: 1 (center)
Barcode horizontal alignment inside the image. 0: left, 1: center, 2: right.
Property: UOM
URL: UOM
Type: UnitOfMeasure
Default: PIXEL (0)
Unit of meature for all size related settings in the library.

Valid values:
  • UnitOfMeasure.PIXEL (0)
  • UnitOfMeasure.CM (1)
  • UnitOfMeasure.INCH (2)
Property: X
URL: X
Type: float
Default: 3
barcode module width and height, default is 3 pixel
Property: BarcodeWidth
URL: BARCODE-WIDTH
Type: float
Default: 0
Barcode image width.

If BarcodeWidth setting is smaller than the barcode required minimum width, the library will automatically reset to barcode minimum width.
Property: BarcodeHeight
URL: BARCODE-HEIGHT
Type: float
Default: 0
Barcode image height.

If BarcodeHeight setting is smaller than the barcode required minimum height, the library will automatically reset to barcode minimum height.
Property: LeftMargin
URL: LEFT-MARGIN
Type: float
Default: 0
Barcode image left margin size.
Property: RightMargin
URL: RIGHT-MARGIN
Type: float
Default: 0
Barcode image right margin size.
Property: TopMargin
URL: TOP-MARGIN
Type: float
Default: 0
Barcode image top margin size.
Property: BottomMargin
URL: BOTTOM-MARGIN
Type: float
Default: 0
Barcode image bottom margin size.
Property: Resolution
URL: RESOLUTION
Type: int
Default: 72
Barcode image resolution in DPI (Dots per inch).
Property: Rotate
URL: ROTATE
Type: Rotate
Default: Rotate.Rotate0 (0)
Valid values:

  • Rotate.Rotate0 (0)
  • Rotate.Rotate90 (1)
  • Rotate.Rotate180 (2)
  • Rotate.Rotate270 (3)
 
Barcode
Colors
Property: BackColor
URL: BACK-COLOR
Type: Color
Default: white
Barcode image background color
Property: ForeColor
URL: FORE-COLOR
Type: Color
Default: black
Barcode image foreground color
 
In WebStream query string, please use int value for Enums, "true" and "false" for bool.











OnBarcode is a market-leading provider of barcode generator, reader controls and components for ASP.NET, Windows Forms, WPF, as well Java, Android, iOS (iPhone, iPad) across all major enterprise development platforms. We provides high quality tutorials and guides for various linear, 2d barcode information, such as C# Barcode, QR Code C#, QR Code VB.NET, QR Code ASP.NET, QR Code .NET, ASP.NET Barcode. OnBarcode products support most common barcode symbologies including QRCode C# SDK, Data Matrix in C#.net Control, PDF-417 Componennt in C# .NET, Code 128 VS .net sdk, Code 39 C# library.
Terms of Use | Privacy Policy
Copyright © OnBarcode.com . All rights reserved.