Skip to content

Latest commit

 

History

History
50 lines (38 loc) · 1.37 KB

File metadata and controls

50 lines (38 loc) · 1.37 KB
layout default-layout
title interface AztecDetails - Dynamsoft Core Module JS Edition API Reference
description This page shows the JS edition of the interface AztecDetails in Dynamsoft DBR Module.
keywords Aztec details, JS
needAutoGenerateSidebar true
noTitleIndex true

AztecDetails

This interface extends BarcodeDetails interface and adds properties specific to Aztec barcodes such as rows, columns, layerNumber, etc.

interface AztecDetails extends BarcodeDetails {
    rows: number;
    columns: number;
    layerNumber: number;
}

rows

The row count of the Aztec barcode, indicating how many rows of modules it contains.

rows: number;

columns

The column count of the Aztec barcode, indicating how many columns of modules it contains.

columns: number;

layerNumber

The layer number of the Aztec code. It can be a negative number (-1, -2, -3, -4) to specify a compact Aztec code or a positive number (1, 2, .. 32) to specify a normal (full-range) Aztec code. The layer number determines the complexity and capacity of the Aztec barcode.

layerNumber: number;