DSQRCodeDetails
DSQRCodeDetails
extends the DSBarcodeDetails
class and represents detailed information specific to a QR Code.
Definition
Assembly: DynamsoftBarcodeReader.xcframework
- Objective-C
- Swift
NS_SWIFT_NAME(QRCodeDetails) @interface DSQRCodeDetails : DSBarcodeDetails
class QRCodeDetails : BarcodeDetails
Attributes
Attributes | Type | Description |
---|---|---|
rows |
NSInteger | The number of rows in the QR Code. |
columns |
NSInteger | The number of columns in the QR Code. |
errorCorrectionLevel |
DSQRCodeErrorCorrectionLevel | The error correction level of the QR Code. |
version |
NSInteger | The version of the QR Code. |
model |
NSInteger | The number of models of the QR Code. |
mode |
NSInteger | Identifies the first data encoding mode of the QR Code. |
page |
NSInteger | Identifies the position of the particular symbol in the structured append format of the QR Code. |
totalPage |
NSInteger | The total number of symbols to be concatenated into the Structured Append format of the QR Code. |
parityData |
Byte | The Parity Data of the QR Code. |
rows
The number of rows in the QR Code.
columns
The number of columns in the QR Code.
errorCorrectionLevel
Describes the error correction level of the QR Code as a DSQRCodeErrorCorrectionLevel
enumeration item.
version
The version of the QR Code.
model
The number of models of the QR Code.
mode
Identifies the first data encoding mode used in the QR Code.
page
The position of the particular symbol in the Structured Append format of the QR Code.
totalPage
The total number of symbols to be concatenated into the Structured Append format of the QR Code.
parityData
The parity data is obtained by XORing a byte with the ASCII/JIS values of all the original input data before division into symbol blocks. It is used for error checking and correction.