vote up 2 vote down star
1

My objective is to extract the text and images from a PDF file while parsing its structure. The scope for parsing the structure is not exhaustive; I only need to be able to identify headings and paragraphs.

I have tried a few of different things, but I did not get very far in any of them:

  • Convert PDF to text. It does not work for me as I lose images and the structure of the document.
  • Convert PDF to HTML. I found a few tools that helped me with this, and the best one so far is pdftohtml. The tool is really good presentation wise, but I haven't been able to successfully parse the HTML.
  • Convert PDF to XML. Same as above.

Anyone has any suggestions on how to tackle this problem?

flag

73% accept rate
Why haven't you been able to successfully parse the html? – Robert Harvey Jun 2 at 4:56
I want to keep track of the headings, and one way of doing it was to identify them by their style. Some headings have mixed styles, so that creates a bit of a problem. – Marcel Tjandraatmadja Jun 2 at 4:59

3 Answers

vote up 1 vote down

Unless its is Marked Content, PDF does not have a structure.... You have to 'guess' it which is what the various tools are doing. There is a good blog post explaining the issues at http://pdf.jpedal.org/java-pdf-blog/bid/12670/PDF-text

link|flag
vote up 0 vote down

If you are interested in using 3rd party SDKs,
this works ok.

link|flag
vote up 0 vote down

I haven't tried it, but converting the PDF to PostScript may make the result easier to parse.

I've found the Xpdf programs invaluable for dealing with PDF processing.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.