-2

I am currently working on a project that requires me to display PDF documents to the user amongst other things.

Is there a free and open sourced PDF Reader that I can customize and build my project on top off?

A Java code base would be perfect, though, C/C++ will do as well. The reader does not necessarily need to be very fancy, but it should be able to handle displaying PDF files completely by itself. Also, I would prefer if the software license allows code customization of a proprietary nature.

If no such PDF Readers exist, is there a PDF library that I can leverage, that will handle/help in displaying the PDF content besides parsing it?

Thanks!

IM42
  • 138
  • 10

3 Answers3

1

I would also suggest investigating MuPDF. Its open source, but you need to be GPL-compliant to use it that way, however it can also be commercially licenced.

KenS
  • 30,202
  • 3
  • 34
  • 51
0

As for a free library, have a look at poppler.

Axel
  • 13,939
  • 5
  • 50
  • 79
0

Suns PDR-Renderer and Multivalent are both Open source and there are OS versions of JPedal and Icepdf.

mark stephens
  • 3,205
  • 16
  • 19
  • PDF renderer looks good, though it does not offer PDF text extraction by default. I found this paper (http://www.iaeng.org/publication/IMECS2011/IMECS2011_pp283-286.pdf) and customized the library a little according to the Upgrade Study section. Thanks everyone for your inputs. – IM42 Jun 14 '12 at 05:48