Added the initial version of my UPC reader and modified some common files
[zxing.git] / javase / src / com / google / zxing / client / j2se / CommandLineRunner.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.client.j2se;
18
19 import com.google.zxing.MultiFormatReader;
20 import com.google.zxing.ReaderException;
21
22 import javax.imageio.ImageIO;
23 import java.awt.image.BufferedImage;
24 import java.io.File;
25 import java.io.IOException;
26 import java.net.URI;
27
28 /**
29  * <p>Simply attempts to decode the barcode in the image indicated by the single argument
30  * to this program, which may be file or a URI. The raw text is printed.</p>
31  *
32  * @author srowen@google.com (Sean Owen), dswitkin@google.com (Daniel Switkin)
33  */
34 public final class CommandLineRunner {
35
36   private CommandLineRunner() {
37   }
38
39   public static void main(String[] args) throws Exception {
40     File inputFile = new File(args[0]);
41     if (inputFile.exists()) {
42       if (inputFile.isDirectory()) {
43         for (File input : inputFile.listFiles()) {
44           decode(input.toURI());
45         }
46       } else {
47         decode(inputFile.toURI());
48       }
49     } else {
50       decode(new URI(args[0]));
51     }
52   }
53
54   private static void decode(URI uri) throws IOException, ReaderException {
55     BufferedImage image = ImageIO.read(uri.toURL());
56     if (image == null) {
57       System.out.println(uri.toString() + ": Could not load image");
58       return;
59     }
60     try {
61       String result =
62           new MultiFormatReader().decode(new BufferedImageMonochromeBitmapSource(image)).getText();
63       System.out.println(uri.toString() + ": " + result);
64     } catch (ReaderException e) {
65       System.out.println(uri.toString() + ": No barcode found");
66     }
67   }
68
69 }