Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Improve support for Macro PDF417 (#973)
* Improve support for Macro PDF417 * cleanup and move license to it's proper place * add .editorconfig + proper indentation / add optionalFields array * rename variables and use Arrays instead of System * replaced length with to * restore spaces & switch to package private
- Loading branch information
Showing
with
309 additions
and 33 deletions.
- +9 −0 .editorconfig
- +110 −1 core/src/main/java/com/google/zxing/pdf417/PDF417ResultMetadata.java
- +75 −29 core/src/main/java/com/google/zxing/pdf417/decoder/DecodedBitStreamParser.java
- +2 −2 core/src/test/java/com/google/zxing/pdf417/PDF417BlackBox3TestCase.java
- +1 −1 core/src/test/java/com/google/zxing/pdf417/PDF417BlackBox4TestCase.java
- +110 −0 core/src/test/java/com/google/zxing/pdf417/decoder/PDF471DecoderTestCase.java
- BIN core/src/test/resources/blackbox/pdf417-3/19.png
- +1 −0 core/src/test/resources/blackbox/pdf417-3/19.txt
- BIN core/src/test/resources/blackbox/pdf417-4/04-01.png
- +1 −0 core/src/test/resources/blackbox/pdf417-4/04.txt
@@ -0,0 +1,9 @@ | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true |
Oops, something went wrong.