4

PDF ファイル (以下にその一部を示します) があり、そこからテキストを抽出したいと考えています。PDFTextStream を使用しましたが、このファイルでは機能しません。(ただし、単純なテキストを持つ他のファイルでは機能しました)。

それを行うことができる他のOCRライブラリは何ですか?

助けてください。ありがとうございました。

PDFファイルの概要

PDFファイルの概要

4

1 に答える 1

5

PDFBox で試してみたところ、満足のいく結果が得られました。

PDFBox を使用して PDF からテキストを抽出するコードは次のとおりです。

import java.io.*;

import org.apache.pdfbox.pdmodel.*;
import org.apache.pdfbox.text.PDFTextStripper;
import org.apache.pdfbox.util.*;

public class PDFTest {

 public static void main(String[] args){
 PDDocument pd;
 BufferedWriter wr;
 try {
         File input = new File("C:/BillOCR/data/bill.pdf");  // The PDF file from where you would like to extract
         File output = new File("D:/SampleText.txt"); // The text file where you are going to store the extracted data
         pd = PDDocument.load(input);
         System.out.println(pd.getNumberOfPages());
         System.out.println(pd.isEncrypted());
         pd.save("CopyOfBill.pdf"); // Creates a copy called "CopyOfInvoice.pdf"
         PDFTextStripper stripper = new PDFTextStripper();
         stripper.setStartPage(1); //Start extracting from page 3
         stripper.setEndPage(1); //Extract till page 5
         wr = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(output)));
         stripper.writeText(pd, wr);
         if (pd != null) {
             pd.close();
         }
        // I use close() to flush the stream.
        wr.close();
 } catch (Exception e){
         e.printStackTrace();
        }
     }
}
于 2016-04-16T11:16:28.193 に答える