From 36db720dac564a3ac38f1bef6bf4ba163cdb7350 Mon Sep 17 00:00:00 2001 From: "kev.sully" Date: Wed, 24 Jun 2009 10:02:04 +0000 Subject: [PATCH] ISSUE: http://code.google.com/p/zxing/issues/detail?id=42 Added PDF417 to list of readers. Will be used only if its specified in a Hint. git-svn-id: https://zxing.googlecode.com/svn/trunk@981 59b500cc-1b3d-0410-9834-0bbf25fbcc57 --- core/src/com/google/zxing/BarcodeFormat.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/src/com/google/zxing/BarcodeFormat.java b/core/src/com/google/zxing/BarcodeFormat.java index 167ed8be9..8733fa771 100644 --- a/core/src/com/google/zxing/BarcodeFormat.java +++ b/core/src/com/google/zxing/BarcodeFormat.java @@ -52,6 +52,9 @@ public final class BarcodeFormat { /** ITF (Interleaved Two of Five) 1D format. */ public static final BarcodeFormat ITF = new BarcodeFormat("ITF"); + /** PDF417 format. */ + public static final BarcodeFormat PDF417 = new BarcodeFormat("PDF417"); + private final String name; private BarcodeFormat(String name) {