1

I'm working on a small program to take a large PDF, split it up (using iText), and add digital signature fields to each file. The splitting part works fine, but users with Adobe Reader can't sign the generated files until someone with Acrobat Professional opens them and enables them for Reader.

Is there a way to do the enabling automatically? A Java/iText solution would be my first choice, but anything automated will beat the current system.

Michael Myers
  • 188,989
  • 46
  • 291
  • 292

2 Answers2

2

Signing PDFs is explained in the iText in Action book, including some examples.

However it seems that enabling "Usage Rights" cannot be done because it requires a private key owned by Adobe - see this thread in the iText mailing list.

Mirko N.
  • 10,537
  • 6
  • 38
  • 37
0

It seems you do not need anymore reader extensions for digital signature with Acrobat Reader DC. See this simular question : Reader extensions not needed anymore for digital signature in Acrobat Reader DC?

Community
  • 1
  • 1
Juljan
  • 802
  • 2
  • 8
  • 13