mirror of
https://github.com/zxing/zxing.git
synced 2025-02-02 05:41:08 -08:00
Issue 630, allow 16 digits
git-svn-id: https://zxing.googlecode.com/svn/trunk@1662 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
d7269e2fd2
commit
c977f184e3
|
@ -46,7 +46,7 @@ public final class ITFReader extends OneDReader {
|
|||
private static final int W = 3; // Pixel width of a wide line
|
||||
private static final int N = 1; // Pixed width of a narrow line
|
||||
|
||||
private static final int[] DEFAULT_ALLOWED_LENGTHS = { 6, 10, 12, 14, 24, 44 };
|
||||
private static final int[] DEFAULT_ALLOWED_LENGTHS = { 6, 10, 12, 14, 16, 24, 44 };
|
||||
|
||||
// Stores the actual narrow line width of the image being decoded.
|
||||
private int narrowLineWidth = -1;
|
||||
|
|
Loading…
Reference in a new issue