Victor,
victordomain wrote: > The problem still remains. How can a put the signature rectangle on the > document to be visible? > > [...] > > Even if the signature rectange is set manually, the rectangle is not shown > in the document. > > sap.SetVisibleSignature(new iTextSharp.text.Rectangle(10,10,100,100),1, > null); If you look into your document, you'll find "/CropBox [ 87 123 507 718 ]" for each page. Your rectangle 10,10,100,100 obviously is outside that cropbox (its below the lower y coordinate 123). Have you tried a different rectangle, e.g. 110,210,200,300? victordomain wrote: > I'm using the code listed here to sign PDF files > (http://itextpdf.sourceforge.net/howtosign.html) Interesting... in those examples I only find signature rectangles 100,100,200,200 and 100,100,300,200, not your 10,10,100,100. And those rectangles likely would have shown in your case. Regards, Michael. -- View this message in context: http://old.nabble.com/Visible-signatures-are-hidden-in-some-cases-tp27653300p27684418.html Sent from the iText - General mailing list archive at Nabble.com. ------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ iText-questions mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/itext-questions Buy the iText book: http://www.1t3xt.com/docs/book.php Check the site with examples before you ask questions: http://www.1t3xt.info/examples/ You can also search the keywords list: http://1t3xt.info/tutorials/keywords/
