Use TRY_HARDER hint in javase CommandLineRunner. TRY_HARDER now tries rotating the...
[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.DecodeHintType;
20 import com.google.zxing.MultiFormatReader;
21 import com.google.zxing.ReaderException;
22
23 import javax.imageio.ImageIO;
24 import java.awt.image.BufferedImage;
25 import java.io.File;
26 import java.io.IOException;
27 import java.net.URI;
28 import java.util.Hashtable;
29
30 /**
31  * <p>Simply attempts to decode the barcode in the image indicated by the single argument
32  * to this program, which may be file or a URI. The raw text is printed.</p>
33  *
34  * @author srowen@google.com (Sean Owen), dswitkin@google.com (Daniel Switkin)
35  */
36 public final class CommandLineRunner {
37
38   private CommandLineRunner() {
39   }
40
41   public static void main(String[] args) throws Exception {
42     File inputFile = new File(args[0]);
43     if (inputFile.exists()) {
44       if (inputFile.isDirectory()) {
45         int successful = 0;
46         for (File input : inputFile.listFiles()) {
47           if (decode(input.toURI())) {
48             successful++;
49           }
50         }
51         System.out.println("Decoded " + successful + " files successfully");
52       } else {
53         decode(inputFile.toURI());
54       }
55     } else {
56       decode(new URI(args[0]));
57     }
58   }
59
60   private static boolean decode(URI uri) throws IOException {
61     BufferedImage image = ImageIO.read(uri.toURL());
62     if (image == null) {
63       System.err.println(uri.toString() + ": Could not load image");
64       return false;
65     }
66     try {
67       Hashtable hints = new Hashtable();
68       hints.put(DecodeHintType.TRY_HARDER, Boolean.TRUE);
69       BufferedImageMonochromeBitmapSource source = new BufferedImageMonochromeBitmapSource(image);
70       String result = new MultiFormatReader().decode(source, hints).getText();
71       System.out.println(uri.toString() + ": " + result);
72       return true;
73     } catch (ReaderException e) {
74       System.out.println(uri.toString() + ": No barcode found");
75       return false;
76     }
77   }
78
79   /*
80   public BufferedImage toBufferedImage() {
81     BufferedImage image = new BufferedImage(dimension, dimension, BufferedImage.TYPE_BYTE_BINARY);
82     for (int j = 0; j < dimension; j++) {
83       for (int i = 0; i < dimension; i++) {
84         image.setRGB(j, i, get(i, j) ? 0x00000000 : 0x00FFFFFF);
85       }
86     }
87     return image;
88   }
89    */
90
91 }