BarcodeResult
Stores the barcode result.
typedef struct tagBarcodeResult BarcodeResult
typedef struct tagBarcodeResult* PBarcodeResult
Attributes
Attribute | Type |
---|---|
barcodeFormat |
BarcodeFormat |
barcodeFormat_2 |
BarcodeFormat_2 |
text |
const char * |
bytes |
unsigned char * |
bytesLength |
int |
location |
Quadrilateral * |
moduleSize |
int |
pageNumber |
int |
reserved |
char[64] |
barcodeFormat
Barcode type in BarcodeFormat group 1.
BarcodeFormat barcodeFormat
barcodeFormat_2
Barcode type in BarcodeFormat group 2.
BarcodeFormat_2 barcodeFormat_2
text
The barcode text, ends by ‘\0’.
const char* text
bytes
The barcode content in a byte array.
unsigned char* bytes
bytesLength
The length of the byte array.
int bytesLength
location
The location of current recognized text.
Quadrilateral location
moduleSize
The barcode module size (the minimum bar width in pixel).
int moduleSize
pageNumber
The page number the barcode located in. The index is 0-based.
int pageNumber
reserved
Reserved memory for the struct. The length of this array indicates the size of the memory reserved for this struct.
char reserved[64]