From b19fbf3d4bd3b808449c8d18cd921ab775cb40b2 Mon Sep 17 00:00:00 2001 From: srowen Date: Mon, 15 Nov 2010 19:58:23 +0000 Subject: [PATCH] Allow 24-digit ITF git-svn-id: https://zxing.googlecode.com/svn/trunk@1655 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 c1877689f..44b403ad1 100644 --- a/core/src/com/google/zxing/oned/ITFReader.java +++ b/core/src/com/google/zxing/oned/ITFReader.java @@ -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, 44 }; + private static final int[] DEFAULT_ALLOWED_LENGTHS = { 6, 10, 12, 14, 24, 44 }; // Stores the actual narrow line width of the image being decoded. private int narrowLineWidth = -1;