プロジェクトで Tess4J を使用して、画像からテキストを抽出しようとしています。OCR を実行しようとすると、次のエラーが発生します: Exception in thread "main" java.lang.Error: Invalid memory access
try {
File imageFile = new File("example4.jpg");
Tesseract instance = Tesseract.getInstance(); // JNA Interface Mapping
//Tesseract1 instance = new Tesseract1();
String result = instance.doOCR(imageFile);
System.out.println(result);
} catch (Exception e) {
e.printStackTrace();
}