Op 3/02/2011 13:37, lvl schreef:
> Do you mean the following PdfDictionary?
> If yes, which entry can I use?
> If no, which dictionary do you mean?
This works for me:

PdfReader reader = new PdfReader(myFile);
AcroFields fields = reader.getAcroFields();
for (String signame : fields.getSignatureNames()) {
         System.out.println(signame);
         PdfDictionary sig = fields.getSignatureDictionary(signame);
         System.out.println(sig.getAsString(PdfName.REASON));
}

------------------------------------------------------------------------------
Special Offer-- Download ArcSight Logger for FREE (a $49 USD value)!
Finally, a world-class log management solution at an even better price-free!
Download using promo code Free_Logger_4_Dev2Dev. Offer expires 
February 28th, so secure your free ArcSight Logger TODAY! 
http://p.sf.net/sfu/arcsight-sfd2d
_______________________________________________
iText-questions mailing list
iText-questions@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/itext-questions

Many questions posted to this list can (and will) be answered with a reference 
to the iText book: http://www.itextpdf.com/book/
Please check the keywords list before you ask for examples: 
http://itextpdf.com/themes/keywords.php

Reply via email to