I'm looking for a fast PDF library, even commercial is okay.

Problem of opensource java PDF renderers that they are based on awt/swing which is not available on Android, so this need to be adopted to Android GUI model.

Best for now I found and checked: https://pdf-renderer.dev.java.net/ (not so old, not so huge, working on example PDFs).

Another is vuDroid PDF implementation, but its painfully slow so its out of option.

Thanks!

link|improve this question

Similar question: stackoverflow.com/questions/3530780/… – Harry Joy Jan 12 '11 at 6:59
Not similar I think, he needs a library for PDF manipulation. – Nimbuz Jan 12 '11 at 7:14
I am also looking for a PDF viewer/parser that is able to show PDFs in a view (not a separate activity) and perhaps support caching of PDFs so you can switch between them quickly. It also needs to be fairly quick in the initial loading of a PDF. – Austyn Mahoney Jan 14 '11 at 22:38
Did adobe not release a native pdf reader for android? I personally will steer away from any third party implementation. There could be a huge performance penalty (especially with rich pdf rendering). Let your application suggest adobe app installation. (utlizing DownloadManager.Request). – doc_180 Jan 21 '11 at 6:12
Do you just want to display a PDF, or manipulate it? – Mark Storer Sep 22 '11 at 20:09
feedback

closed as not constructive by Robert Harvey Apr 18 at 19:31

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

12 Answers

up vote 20 down vote accepted
+125

Here is the list of the other open sources PDF readers running on the top of the Android

Please note that these and any other project derived from MuPDF is bound by the terms of GPL and may not be suitable for the commerical use.

The following is a list of SDKs suitable for commerical use:

link|improve this answer
1  
Already tried these, all are awfully slow! – Nimbuz Jan 25 '11 at 14:22
@Nimbuz: personally I haven't used any one of these but as I have a list of them so I thought to suggest you. – Vikas Patidar Mar 4 '11 at 5:34
Selecting your answer, just coz I have to, but I didn't find a decent solution and gave up - went for iOS/ – Nimbuz May 8 '11 at 4:42
Is there any ob above library can detect internal anchors and embedded hyperlinks of PDF...? – nisha.113a5 Mar 1 at 11:45
Maybe its some value to somebody. The PDFTron library comes in at 26MB. Too much for most apps I would guess. However this post aludes to them being able to trim it to 5MB, but that would be a custom build groups.google.com/forum/?fromgroups#!topic/pdfnet-sdk/… – jiduvah May 15 at 9:12
feedback

Me also faced this like a problem. My condition is very specific. I need to display a some pdf file in my application which was downloaded from server. But after download my client need to read it really fast. They didn't allow even to poss a second for rendering. So what i did is

  • After downloading the i have converted each page into image to a particular folder
    I have converted each page to bitmap using library i got from Android PDF Viewer, then saved it as png file using Bitmap.compress function.
  • At the time of displaying i have displayed this image one by one with zoom effects.

My client is well satisfied with this. Hope some times this may help you.

link|improve this answer
feedback

IText is not a viewer so a port of Itext will not work for you.

Qoppa Software has just released a PDF library for Android (ported from Java) which supports viewing, annotating and manipulating PDF documents. According to reviews, the renderer is fast to open and to zoom into PDF documents.

link|improve this answer
feedback

I'm not sure if you're looking for a Java only solution, but Foxit provide an Embedded PDF SDK for mobile devices written in C++. You could use this with the NDK which should give you the performance you need. Not sure how much it costs though.

link|improve this answer
feedback

iText was recently ported to Android by the original author, Bruno Lowagie:

From the 5.1.0 release notes:

The most important jars are those with the binaries: itextpdf-5.1.0.jar and itext-xtra-5.1.0.jar. Note that we've split iText in two parts: the core library and extra functionality. In the future, we'll provide even more different modules. Why? Because we're also working on an Android version of iText. Currently, the Android version is trimmed down to an "iText light" version (no encryption, no parsing,...). We'd like to be able to offer iText as a combination of different modules in the future. For instance: if you don't need PDF 2 functionality, then you don't need to ship the itext-xtra.jar with your application. [If you want to know more about getting the Android version and using it in a commercial app, please contact our sales department]

It's not a full port (yet... crypto, no parser package for content parsing), but is available, and your dollars will no doubt help to direct which features might be added next.

PS: Others have taken it on themselves to port iText to Android for their own use... this generally involved ripping out everything they weren't using and porting the rest: one-offs, not suitable for general use.

link|improve this answer
feedback

Android PDF Viewer (APV) 3.0 is very fast. Faster then Official Adobe Reader for Android. I use Nexus S.

link|improve this answer
feedback

You might want to try www.slgmobile.com they have native android rendering software. Not sure if they license the render.

link|improve this answer
feedback

You could try this one http://andpdf.sourceforge.net/ or http://code.google.com/p/nookdevs/downloads/detail?name=apdfViewer.apk&can=2&q=

link|improve this answer
Slow as hell - all open source libraries. – Nimbuz Jan 23 '11 at 5:37
which phone did u try that on ?? – the100rabh Jan 24 '11 at 17:44
feedback

MuPDF by the fine folks of Artifex (the company which pays the Ghostscript developers).

Written in C. Simple, fast, lightweight PDF renderer specifically designed to also run on mobile devices. Core rendering engine inside the better known Windows PDF viewer SumatraPDF. {And SumatraPDF IS fast (on Windows). It's current development version (which I compiled myself) just recently gained a few features which will make me finally drop Foxit, Adobereader and Primo/NitroPDF on my WinXP-Netbook.}

link|improve this answer
feedback

I have read the source code of some open source Android PDF viewers:
They have a Java UI, which calls the mupdf C library via JNI like this.

link|improve this answer
feedback

My employer was also looking for Android PDF Viewer Library.

I looked at all provided posts and unfortunately none of them passed our evaluation.

Most Sourceforge projects seems to be simple wrappers around mupdf, rehash the same thing, and suffer from same limitations (e.g. missing support for many PDF features, terrible performance, crashing, no-hardware acceleration, no text search, annotations etc.) - see notes from others above for more info.

After almost three months of try & fail I discovered another mobile library from PDFTron (http://www.pdftron.com/pdfnet/mobile/android_pdf_library.html). It is too bad that this SDK is so hard to find. It solved all our perf, reliability, and other issues - and we are now planning to use the same API on iOS and Windows.

Watch for our app release in Android store next week, but in the meantime you could ask PDFTron for a demo (unfortunately it seems they do not have a public demo), or you can check soonr-scrible which is how I discovered the lib in the first place.

link|improve this answer
feedback

I use and love PDFViewer SDK from Radaee which is sold and supported here: http://www.androidpdf.mobi. Fast and customizable.

link|improve this answer
feedback

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