| layout | default-layout |
|---|---|
| title | PDF417Details Class - Dynamsoft Capture Vision Flutter |
| description | PDF417Details class of DCV Flutter represents the extended info of a PDF417 Code. |
| keywords | PDF417 code, details, result, barcode, extended |
| needGenerateH3Content | true |
| needAutoGenerateSidebar | true |
| noTitleIndex | true |
The PDF417Details class encapsulates all of the extended details of a PDF417 Code that is not available in the regular barcode result, if the barcode is a PDF417 Code.
Tip
If you would like to learn more about the PDF417 format, please refer to this page.
Assembly: dynamsoft_capture_vision_flutter
class PDF417Details| Property | Type | Description |
|---|---|---|
rows |
int | Represents the number of rows that make up the PDF417 Code. |
columns |
int | Represents the number of columns that make up the PDF417 Code. |
errorCorrectionLevel |
int | Specifies the error correction level of the PDF417 Code. |
hasLeftRowIndicator |
bool | Indicates whether the PDF417 code has the left row indicator or not. |
hasRightRowIndicator |
bool | Indicates whether the PDF417 code has the right row indicator or not. |
codewords |
int | The code words of the PDF417 Code. |
Represents the number of rows that make up the PDF417 Code.
int rows;Represents the number of columns that make up the PDF417 Code.
int columns;Specifies the error correction level of the PDF417 Code.
int errorCorrectionLevel;Remarks
There are eight levels for error correction when it comes to PDF417 codes, with each level indicating the readability of the PDF417 code even though it has been damaged or distorted. If you would like to learn more about the error correction levels and the differences between them, please refer to this PDF417 info page.
Indicates whether the PDF417 code has the left row indicator or not.
bool version;Remarks
The left and right indicators do not contain any text data, but rather contains more of the metadata of the PDF417 code, like the number of rows, the error correction level, and more.
Indicates whether the PDF417 code has the right row indicator or not.
bool hasRightRowIndicator;Remarks
The left and right indicators do not contain any text data, but rather contains more of the metadata of the PDF417 code, like the number of rows, the error correction level, and more.
Represents the codewords of the PDF417 code.
List<int>? codewords;Remarks
The data codewords section is where numbers, letters, or other symbols are decoded in a cluster pattern of bars and spaces, each separated by a solid white column. There can be as few as one or as many as 30 data codeword clusters. The size of the PDF417 barcode depends on how much data is encoded.