Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need a PDF library for manipulating a PDF documents, (creating PDF, image convertinng to PDF) and things like that but in Android.

I tried the android itext port but the library project generates compile errors after I added it to my Project. Looks like it is still using some affinetransformation classes that are defined in AWT.

share|improve this question
8  
Most StackOverflow users are allergic to the phrase "it doesn't work". You might want to explain why it doesn't work, or if you don't know that, ask it as a question. If we provide you an alternative, it might also "not work"; will you then simply ask for another one? – MvanGeest Aug 20 '10 at 12:27
Ok , MvanGeest I am a completely new here :) I try it with iText & on forums some people say it should work and some it does't , I was imported him in my project and fallow tutorial how to use it and nothing happened .. try it few time result nothing .there is no error but in a place where I want to create a PDF there is nothing . – zire Aug 20 '10 at 12:34
I used iText too. You can see my code at stackoverflow.com/questions/3530780/…. – Sridhar Jagannathan Aug 15 '11 at 16:31

closed as not constructive by casperOne Apr 14 '12 at 13:55

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

4 Answers

up vote 8 down vote accepted

It seems that no one of the pure java pdf libraries will work with android because they use libraries that aren't supported by android. I think I read that iText is interested in doing a port to android but thinks that google should support them if they did, haven't got a source on that though.

Here is a project in work for writing pdfs in android: sourceforge.net/projects/apwlibrary Haven't tried it and it says that it only does simple pdfs

share|improve this answer
softran I was on this link before and this is like starting a new project but there is no any file download.It was just link redirecting from : sourceforge.net/projects/apwlibrary to coderesearchlabs.com/androidpdfwriter – zire Aug 20 '10 at 12:56
6  
look here: apwlibrary.svn.sourceforge.net/viewvc/apwlibrary – softarn Aug 20 '10 at 13:23
you found it thanks one more time:) , i will try it later – zire Aug 20 '10 at 13:55
This library are very useful for simple Pdf creation , thanks softarn – zire Aug 29 '10 at 12:33
1  
Why is it still accepted? Is it still valid? We have 2013 now! ;) – Yar Feb 26 at 13:25

You can also try pdfbox

http://pdfbox.apache.org/

You can chk this post

http://markmail.org/message/b2xjozidt32rhuyq#query:pdfbox%20android+page:1+mid:ipq7pviignd4cpja+state:results

share|improve this answer
Thanks Rahul I use the links and I will try it today :) – zire Aug 20 '10 at 12:57

IText seems to work fine.

To fix the affineTransform compilation issue you simply need to mark the "Micro PJAWT.jar" in iText for export in Eclipse so that your dependent project can use it for compilation purposes.

share|improve this answer

Have a look at MuPDF.

MuPDF uses a very small footprint and has nearly-complete support for all features of PDF-1.7. It is the base for the quite popular (Windows) SumatraPDF viewer, but it has been ported to Android and iOS too.

Then also have a look at all the questions that have been asked on this website concerning MuPDF.

share|improve this answer
1  
take note that is not free for commercial apps – Buda Florin Dec 14 '12 at 12:11
@BudaFlorin: maybe you look up the fine differences between "free as in beer" and "free as in liberty" for once? Also the fine differences between "commercial" applications and "proprietary" applications or software? A software can well be commercial (see RedHat) without being closed source or proprietary, and a "free" (as in beer) one can still be closed source (see many shareware programms, or many Android apps). – Kurt Pfeifle Dec 16 '12 at 1:21
@BudaFlorin: If your comment did read 'Take note that MuPDF is not free for closed source apps' it would be more appropriate and exact... – Kurt Pfeifle Dec 16 '12 at 1:22
:) Yes, you're right :) is not free for commercial apps which are't open source – Buda Florin Dec 17 '12 at 16:06
@BudaFlorin: it's also not free (gratis) for non-commercial apps which aren't open source. – Kurt Pfeifle Dec 17 '12 at 17:01

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