AztecDetails
The AztecDetails class represents a barcode in Aztec format. It inherits from the BarcodeDetails class and contains information about the row count, column count, and layer number of the barcode.
Definition
Package: com.dynamsoft.dbr
Inheritance: BarcodeDetails -> AztecDetails
public class AztecDetails extends BarcodeDetails
Attributes
| Attribute | Type | Description |
|---|---|---|
rows |
int | The number of rows in the Aztec barcode. |
columns |
int | The number of columns in the Aztec barcode. |
layerNumber |
int | The layer number of the Aztec barcode. |
Constructors
| Constructor | Description |
|---|---|
AztecDetails() |
Default constructor. |
AztecDetails(int rows, int columns, int layerNumber) |
Constructor with parameters. |
Attribute Details
rows
The number of rows in the Aztec barcode.
public int rows
columns
The number of columns in the Aztec barcode.
public int columns
layerNumber
Specifies the layer number of the Aztec barcode. 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.
public int layerNumber
Constructor Details
AztecDetails()
Default constructor. Initializes a new instance of the AztecDetails class with default values (-1, -1, -1).
public AztecDetails()
AztecDetails(int rows, int columns, int layerNumber)
Constructor with parameters. Initializes a new instance of the AztecDetails class with specified values.
public AztecDetails(int rows, int columns, int layerNumber)
Parameters
rows: The number of rows in the Aztec barcode.
columns: The number of columns in the Aztec barcode.
layerNumber: The layer number of the Aztec barcode.