Table of contents
Swift
Objective-C

QRCodeDetails

The QRCodeDetails class represents the details of a QR Code. It is derived from the BarcodeDetails class and contains various attributes related to the QR Code.

Definition

Namespace: Dynamsoft.DBR

Assembly: Dynamsoft.BarcodeReader.dll

Inheritance: BarcodeDetails -> QRCodeDetails

public class QRCodeDetails : BarcodeDetails

Attributes

Attribute Type
rows int
columns int
errorCorrectionLevel EnumQRCodeErrorCorrectionLevel
version int
model int
mode int
page int
totalPage int
parityData byte
codewords byte[]
dataMaskPattern int

rows

The row count of the QR Code.

int rows;

columns

The column count of the QR Code.

int columns;

errorCorrectionLevel

The error correction level of the QR Code.

EnumQRCodeErrorCorrectionLevel errorCorrectionLevel;

See Also

EnumQRCodeErrorCorrectionLevel

version

The version of the QR Code.

int version;

model

Number of models of the QR Code.

int model;

mode

Identify the first data encoding mode of the QR Code.

int mode;

page

Identify the position of the particular symbol in the Structured Append format of the QR Code.

int page;

totalPage

Identify the total number of symbols to be concatenated in the Structured Append format of the QR Code.

int totalPage;

parityData

The Parity Data shall be an 8 bit byte following the Symbol Sequence Indicator. The parity data is a value obtained by XORing byte by byte the ASCII/JIS values of all the original input data before division into symbol blocks.

byte parityData;

codewords

The codewords of the QR Code.

byte[] codewords;

dataMaskPattern

The data mask pattern reference for QR Code symbols.

int dataMaskPattern;

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: