Source Code : Tess4J

Tess4J


Code Samples

The following code example shows common usage of the library. Make sure *.dll and tessdata folder are in the same directory and the .jar files are in the classpath.

package net.sourceforge.tess4j.example;

import java.io.File;
import net.sourceforge.tess4j.*;

public class TesseractExample {

  public static void main(String[] args) {
  File imageFile = new File("eurotext.tif");
  Tesseract instance = Tesseract.getInstance();  // JNA Interface Mapping
  // Tesseract1 instance = new Tesseract1(); // JNA Direct Mapping

  try {
  String result = instance.doOCR(imageFile);
  System.out.println(result);
  } catch (TesseractException e) {
  System.err.println(e.getMessage());
  }
  }
}