Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using PDFBox to extract the outline (bookmarks) information from PDF files, that's even explained in the same site.

However, I've had problems not extracting but generating the qualified urls (foo.pdf#page=22777&zoom=2,2,777) to open the PDF in those bookmarks. Sometimes PDFBox is not able to find the page in which the bookmark is placed (i.e. the page number, left coordinate or top coordinate are wrong.)

Anyone knows a PDF library capable to do this (preferably in Java)? Thanks.

Best regards,

Alexander.

share|improve this question

1 Answer

up vote 1 down vote accepted

iText (http://itextpdf.com) might work for you.

I've used it mostly to create PDFs (not so much with parsing already exitingones), but the library is good, and does have objects related to outlines and bookmarks.

share|improve this answer
Yeah iText is working like a charm, I'm extracting pages correctly using it! They even provide an example in their toolbox (bit.ly/cvf5iT). – Alexander Aug 12 '10 at 11:32
Fantastic. Glad it was able to help. – Dante617 Aug 12 '10 at 14:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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