Added the initial version of my UPC reader and modified some common files
[zxing.git] / core / src / com / google / zxing / upc / UPCReader.java
1 /*
2  * Copyright 2007 Google Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package com.google.zxing.upc;
18
19 import com.google.zxing.MonochromeBitmapSource;
20 import com.google.zxing.Reader;
21 import com.google.zxing.ReaderException;
22 import com.google.zxing.Result;
23 import com.google.zxing.ResultPoint;
24
25 import java.util.Hashtable;
26
27 /**
28  * A reader which decodes UPC-A barcodes.
29  *
30  * @author dswitkin@google.com (Daniel Switkin)
31  */
32 public final class UPCReader implements Reader {
33
34   private static final ResultPoint[] NO_POINTS = new ResultPoint[0];
35
36   /**
37    * Locates and decodes a UPC barcode in an image.
38    *
39    * @return a String representing the digits found
40    * @throws ReaderException if a barcode cannot be found or decoded
41    */
42   public Result decode(MonochromeBitmapSource image) throws ReaderException {
43     return decode(image, null);
44   }
45
46   public Result decode(MonochromeBitmapSource image, Hashtable hints)
47       throws ReaderException {
48     UPCDecoder decoder = new UPCDecoder(image);
49     String result = decoder.decode();
50     if (result == null || result.length() == 0) {
51       throw new ReaderException("No UPC barcode found");
52     }
53     return new Result(result, NO_POINTS);
54   }
55 }