import com.paperinputframework.Document;
import com.paperinputframework.TextExtractor;
public class PaperInputExample {
public static void main(String[] args) {
Document document = new Document("path/to/document.jpg");
TextExtractor textExtractor = new TextExtractor();
String extractedText = textExtractor.extractText(document);
System.out.println(extractedText);
}
}