AztecDetails
The AztecDetails class encapsulates all of the extended details of an Aztec Code that is not available in the regular barcode result, if the barcode is an Aztec Code.
If you would like to learn more about the Aztec format, please refer to this page.
Definition
Assembly: dynamsoft_capture_vision_flutter
class AztecDetails
Properties
| Property | Type | Description |
|---|---|---|
rows |
int | Represents the number of rows that make up the Aztec Code. |
columns |
int | Represents the number of columns that make up the Aztec Code. |
layerNumber |
int | Represents the layer number of an Aztec code. |
rows
Represents the number of rows that make up the Aztec Code.
int rows;
columns
Represents the number of columns that make up the Aztec Code.
int columns;
layerNumber
Represents the layer number of an Aztec code. A negative number (-1, -2, -3, -4) specifies a compact Aztec code, while a positive number (1, 2,…32) specifies a normal (full-range) Aztec code.
int layerNumber;
Remarks
When it comes to Aztec codes, there are two main sizes that the Barcode Reader library supports. The first is the compact Aztec code, which has 1 to 4 layers, and it is used for smaller pieces of data or messages. The second is a full-range Aztec code, which has 1 to 32 layers, and it is used for larger pieces of data or messages.