X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=core%2Fsrc%2Fcom%2Fgoogle%2Fzxing%2Foned%2FMultiFormatUPCEANReader.java;fp=core%2Fsrc%2Fcom%2Fgoogle%2Fzxing%2Foned%2FMultiFormatUPCEANReader.java;h=1901902a9122f9b7d5db3712544b42f2b76533d6;hb=31e75a402dae9aca99556e661029f812b3a55cf9;hp=b31fbf480921ca92450ffe35421d599d7009a4c2;hpb=2ad6bf1cb08ff6b695443359ff849a0134e6e699;p=zxing.git diff --git a/core/src/com/google/zxing/oned/MultiFormatUPCEANReader.java b/core/src/com/google/zxing/oned/MultiFormatUPCEANReader.java index b31fbf48..1901902a 100644 --- a/core/src/com/google/zxing/oned/MultiFormatUPCEANReader.java +++ b/core/src/com/google/zxing/oned/MultiFormatUPCEANReader.java @@ -40,8 +40,7 @@ public final class MultiFormatUPCEANReader extends AbstractOneDReader { if (possibleFormats != null) { if (possibleFormats.contains(BarcodeFormat.EAN_13)) { readers.addElement(new EAN13Reader()); - } - if (possibleFormats.contains(BarcodeFormat.UPC_A)) { + } else if (possibleFormats.contains(BarcodeFormat.UPC_A)) { readers.addElement(new UPCAReader()); } if (possibleFormats.contains(BarcodeFormat.EAN_8)) { @@ -52,8 +51,8 @@ public final class MultiFormatUPCEANReader extends AbstractOneDReader { } } if (readers.isEmpty()) { - readers.addElement(new EAN13Reader()); - readers.addElement(new UPCAReader()); + readers.addElement(new EAN13Reader()); + // UPC-A is covered by EAN-13 readers.addElement(new EAN8Reader()); readers.addElement(new UPCEReader()); } @@ -71,16 +70,14 @@ public final class MultiFormatUPCEANReader extends AbstractOneDReader { // Special case: a 12-digit code encoded in UPC-A is identical to a "0" // followed by those 12 digits encoded as EAN-13. Each will recognize such a code, // UPC-A as a 12-digit string and EAN-13 as a 13-digit string starting with "0". - // Individually these are correct. - // - // These cases can't be distinguished, so we defer to the UPC-A decoder and - // treat this case as a UPC-A code. But if we let the UPC-A decoder look at - // symbols first, it will recognize any EAN-13 code as a 12-digit string, - // which is wrong. So EAN-13 has to try first. + // Individually these are correct and their readers will both read such a code + // and correctly call it EAN-13, or UPC-A, respectively. // - // Here is, therefore, where we implement this logic: - if (result.getBarcodeFormat().equals(BarcodeFormat.EAN_13) && - result.getText().charAt(0) == '0') { + // In this case, if we've been looking for both types, we'd like to call it + // a UPC-A code. But for efficiency we only run the EAN-13 decoder to also read + // UPC-A. So we special case it here, and convert an EAN-13 result to a UPC-A + // result if appropriate. + if (result.getBarcodeFormat().equals(BarcodeFormat.EAN_13) && result.getText().charAt(0) == '0') { return new Result(result.getText().substring(1), null, result.getResultPoints(), BarcodeFormat.UPC_A); } return result;