up vote 2 down vote favorite
1
share [g+] share [fb]

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.

link|improve this question
iText's security flag support is non-existant. We just check to see whether or not you have the owner password, and throw if you don't. There have been enough complaints along these lines recently that we'll probably end up adding some flag-level security support in the future. – Mark Storer Oct 26 '10 at 0:37
feedback

2 Answers

[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|improve this answer
feedback

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

I wound up regenerating the PDF in an unencrypted form.

link|improve this answer
Why do you have 2 logins? – Aaron Smith Jan 22 '09 at 16:02
1  
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 '09 at 4:13
feedback

Your Answer

 
or
required, but never shown