Contains the 2D result information for a single detected barcode.
Declaration:
typedef struct tagBX\_BarcodeResult2D
{
long RowsDetected;
long ColumnsDetected;
long Rows;
long Columns;
long ErrorCorrectionLevel;
} BX\_BarcodeResult2D;
Members:
Name | Type | Description |
---|---|---|
RowsDetected | long | Specifies the number of rows detected in the barcode image. |
ColumnsDetected | long | Specifies the number of columns detected in the barcode image. |
Rows | long | Specifies the number of rows in the barcode as defined by the indicator pattern. |
Columns | long | Specifies the number of columns in the barcode as defined by the indicator pattern. Column Count for PDF417 barcodes is the number of codeword columns. |
ErrorCorrectionLevel | long | Specifies the amount of error correction detected for barcodes that support it. Error correction is valid for QR barcodes and PDF417 barcodes. The error correction level for the QRCode ranges from a low of -1 to a high of 3. The error correction level for the PDF417 ranges from a low of -1 (2 code words of error correction) to a high of 8 (512 code words of error correction). |