From 4b84ad8a40dba3461dc9aec0b0a79f41ec575841 Mon Sep 17 00:00:00 2001 From: srowen Date: Tue, 5 Apr 2011 08:20:47 +0000 Subject: [PATCH] Add length 20 per user request git-svn-id: https://zxing.googlecode.com/svn/trunk@1736 59b500cc-1b3d-0410-9834-0bbf25fbcc57 --- core/src/com/google/zxing/oned/ITFReader.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/com/google/zxing/oned/ITFReader.java b/core/src/com/google/zxing/oned/ITFReader.java index 54bbf5aca..691c0f92c 100644 --- a/core/src/com/google/zxing/oned/ITFReader.java +++ b/core/src/com/google/zxing/oned/ITFReader.java @@ -50,7 +50,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, 16, 24, 44 }; + private static final int[] DEFAULT_ALLOWED_LENGTHS = { 6, 10, 12, 14, 16, 20, 24, 44 }; // Stores the actual narrow line width of the image being decoded. private int narrowLineWidth = -1;