| layout | default-layout |
|---|---|
| title | CPDF417Details Class - Dynamsoft Barcode Reader C++ Edition API Reference |
| description | API reference for the CPDF417Details class in Dynamsoft Barcode Reader C++ Edition, storing the row count, column count, error correction level, and codeword data of a decoded PDF417 barcode. |
| keywords | rows, columns, errorCorrectionLevel, CPDF417Details, api reference |
The CPDF417Details class represents a barcode in PDF417 format. It inherits from the CBarcodeDetails class and contains information about the row count, column count, and error correction level of the barcode.
Namespace: dynamsoft::dbr
Assembly: DynamsoftBarcodeReader
Inheritance: [CBarcodeDetails]({{ site.dbr_cpp_api }}barcode-details.html) -> CPDF417Details
class CPDF417Details : public CBarcodeDetails| Attribute | Type |
|---|---|
rows |
int |
columns |
int |
errorCorrectionLevel |
int |
hasLeftRowIndicator |
int |
hasRightRowIndicator |
int |
codewords |
unsigned int* |
codewordsCount |
int |
The number of rows in the PDF417 barcode.
int rowsThe number of columns in the PDF417 barcode.
int columnsSpecifies the error correction level of PDF417 code.
int errorCorrectionLevelSpecifies whether the left row indicator of the PDF417 code exists.
int hasLeftRowIndicatorSpecifies whether the right row indicator of the PDF417 code exists.
int hasRightRowIndicatorThe codewords of the PDF417 barcode.
unsigned int* codewordsThe count of the codewords.
int codewordsCount