Hi,
 I have a signed PDF document in append mode.

 I want to add some text/image to a new revision with PdfStamper, however 
everything I am trying to add makes the previous signature invalid except for a 
new signature field.

 Here is a code I use to add a new page (which makes the digital signature 
invalid too).

 RandomAccessFileOrArray raf = new RandomAccessFileOrArray(InputStream);
 PdfReader reader = new PdfReader(raf, null);
 PdfStamper stamper = new PdfStamper(reader, OutputStream, '\0', true);
 stamper.InsertPage(0, new iTextSharp.text.Rectangle(0, 0, 100, 100));
 // stamper.AddSignature("test", 1, 1, 1, 1, 1); - if I use this instead of the 
previous line, then the signature remains valid.
 stamper.Close();
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
iText-questions mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/itext-questions

iText(R) is a registered trademark of 1T3XT BVBA.
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