up vote 1 down vote favorite
2
share [g+] share [fb]

Does anyone know of a PDF file parser that I could use to pull out sections of text from the plaintext pdf file? Specifially I want a way to be able to reliably pull out the section of text specific to annotations?

Delphi, C# RegEx I dont mind.

link|improve this question

feedback

6 Answers

up vote 3 down vote accepted

The PDF File Parser article on xactpro seems to be exactly what you need. It explains the format of the PDF and comes with full source code for a parser (and another project for visualisation of the model).

The parser uses format-specific terms, but you could easily use the visualiser to learn what to look for.

link|improve this answer
Link seems to be broken. – automatic Dec 15 '10 at 18:00
@automatic - It looks like the entire site is down – Richard Szalay Dec 16 '10 at 7:56
feedback

You can also take a look at Xpdf (http://www.foolabs.com/xpdf/download.html)

link|improve this answer
feedback

Not sure if it supports the functionality you need, but we've been using abcPDF with some success.

link|improve this answer
I don't think abcPDF supports parsing. – Richard Szalay Feb 9 '09 at 21:41
@Richard Szalay, I wasn't sure. The feature matrix says it supports reading pdfs, but whether it goes you an object model in the api to accesss parts of the pdf is something I can't say for certain. – Jeremy Feb 9 '09 at 21:54
I wouldn't go so far as to reject it's advertised feature set :) It didn't support it when I used it last, but it's writing capabilities certainly did the job well. – Richard Szalay Feb 9 '09 at 22:32
1  
ABCpdf does expose an object model, it's what they call Atoms. – Mark S. Rasmussen Feb 10 '09 at 7:58
feedback

check out pdfbox

link|improve this answer
feedback

abcPDF does let you extract annotations, they have a very good section in the help for it, but the code to handle it is generally :

    for (int objectIndex = 0; objectIndex < theDoc.ObjectSoup.Count; objectIndex++)
        {
            try
            {
                IndirectObject element = theDoc.ObjectSoup.ElementAt(objectIndex);

                string elementType = element.GetType().ToString();
                switch (elementType)
                {
                    case "WebSupergoo.ABCpdf8.Objects.Annotation":
                       //process the annotation, which could be all kinds of stuff
                        WebSupergoo.ABCpdf8.Objects.Annotation annotation = (WebSupergoo.ABCpdf8.Objects.Annotation)element; 

                        ProcessAnnotation(annotation);

...

link|improve this answer
feedback

I don't know all the features of these PDF parsers, but Aspose has a pretty comprehensive one. We did, unfortunately, come across two bugs, and I've been waiting a long time for them to be fixed.

ITextSharp seems to be the most common open source PDF parser for .Net.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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