Method | Description | |
---|---|---|
decode ( |
Decodes a PDF417 Code represented as a {@link BitMatrix}. A 1 or "true" is taken to mean a black module.
|
|
decode ( bool image ) : |
Convenience method that can decode a PDF417 Code represented as a 2D array of booleans. "true" is taken to mean a black module.
|
Method | Description | |
---|---|---|
correctErrors ( int codewords, int erasures, int numECCodewords ) : int |
Given data and error-correction codewords received, possibly corrupted by errors, attempts to correct the errors in-place using Reed-Solomon error correction.
|
|
verifyCodewordCount ( int codewords, int numECCodewords ) : void |
Verify that all is OK with the codeword array.
|
public decode ( |
||
bits | booleans representing white/black PDF417 Code modules /// | |
return |
public decode ( bool image ) : |
||
image | bool | booleans representing white/black PDF417 modules /// |
return |