vote up 2 vote down star
2

I have a fillable, saveable PDF file that has an owner password (that I don't have access to). I can fill it out in Adobe reader, export the FDF file, modify the FDF file, and then import it.

Then I tried to do it with iText(Sharp). I can't create a PdfStamper from my PdfReader because I didn't provide the owner password to the reader. Is there any way to do this programmatically or must I recreate the document? Even using FdfReader requires a PdfStamper. Am I missing anything? Anything legal that is - I'm pretty sure I could hack the document, but I can't. Ironically, recreating it would probably be ok.

flag

2 Answers

vote up 1 vote down

[I found this question several months after it was posted and I'm posting this solution now for anyone who comes across this question in a search.]

I was in the exact same situation: my customer had a PDF with fillable fields that I needed to programmatically access. Unfortunately the PDF was password protected and they didn't have the password so I found couldn't work with their file.

What I discovered was that iTextSharp version 4.0.4 (and later) enforces password restrictions, earlier versions did not. Check out this iText mailing list archive thread, and the response from Paulo Soares (one of the iTextSharp developers).

So I downloaded version 4.0.3 and sure enough it worked. In my case I didn't even have to change my code to use this older version.

You can download 4.0.3 (and all other versions) at SourceForge.

link|flag
vote up 0 vote down

Unless someone else chimes in, I'll assume the answer is "No"

I wound up regenerating the PDF in an unencrypted form.

link|flag
Why do you have 2 logins? – Aaron Smith Jan 22 at 16:02
I posted the question from a customer site using my iPhone and I was in too big of a hurry (or too lazy) to authenticate via OpenID, so I just posted anonymously then forgot to set it to community wiki. – CMPalmer Feb 2 at 4:13

Your Answer

Get an OpenID
or

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