You are here: Start » FIL.NET » Function Reference » Computer Vision » Datacodes » FIL.DecodeDataMatrix

FIL.DecodeDataMatrix

Translates a matrix of 0 or 1 values to a text in accordance to how DataMatrix codes are encoded.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

C++
C#
 
public static void DecodeDataMatrix
(
	FilNet.Matrix inMatrixValues,
	bool inAllowMirrored,
	INullable<string> outText,
	out FilNet.DataMatrixType? outType
)

Parameters

Name Type Range Default Description
inMatrixValuesFilNet.MatrixMatrix of binary values.
inAllowMirroredboolAllows reading mirrored/transposed codes.
outTextFilNet.INullable<string>Decoded text or nothing if decoding failed. This parameter cannot be null.
outTypeFilNet.DataMatrixType?DataMatrix code type.

Description

Supported code types: ECC 200 and ECC 000-140.

See also