Houjie
2025-07-24 52a3ff1bce1417b39f6872d8e8cb378e9c2ccc6f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import Reader from '../Reader';
import Result from '../Result';
import BinaryBitmap from '../BinaryBitmap';
import DecodeHintType from '../DecodeHintType';
/**
 * This implementation can detect and decode Aztec codes in an image.
 *
 * @author David Olivier
 */
export default class AztecReader implements Reader {
    /**
     * Locates and decodes a Data Matrix code in an image.
     *
     * @return a String representing the content encoded by the Data Matrix code
     * @throws NotFoundException if a Data Matrix code cannot be found
     * @throws FormatException if a Data Matrix code cannot be decoded
     */
    decode(image: BinaryBitmap, hints?: Map<DecodeHintType, any> | null): Result;
    private reportFoundResultPoints;
    reset(): void;
}