我想将图像放入经过数字签名的PDF中。如果我使用通常的方式,签名被打破。但是使用Acrobat,可以在签名的PDF中添加注释标记,并且签名不会被破坏。
Googgling我找到了一个如何做到这一点的例子:
我已将其翻译为c#,但没有成功:
using (Stream inputPdfStream = new FileStream("test.pdf", FileMode.Open, FileAccess.Read, FileShare.Read))
using (Stream inputImageStream = new FileStream("grafo.jpg", FileMode.Open, FileAccess.Read, FileShare.Read))
using (Stream outputPdfStream = new FileStream("result.pdf", FileMode.Create, FileAccess.Write, FileShare.None))
{
var reader = new PdfReader(inputPdfStream);
var stamper = new PdfStamper(reader, outputPdfStream);
iTextSharp.text.Image image = iTextSharp.text.Image.GetInstance(inputImageStream);
image.SetAbsolutePosition(0, 0);
PdfTemplate template = PdfTemplate.CreateTemplate(stamper.Writer, image.Width, image.Height);
template.AddImage(image);
iTextSharp.text.Rectangle rect = new iTextSharp.text.Rectangle(350, 250, 350 + image.Width, 250 + image.Height);
PdfAnnotation annotation = PdfAnnotation.CreateStamp(stamper.Writer, rect, null, Guid.NewGuid().ToString());
annotation.SetAppearance(PdfName.N, template);
stamper.AddAnnotation(annotation, 1);
stamper.Close();
}
当我使用Acrobat打开PDF时,签名被破坏。
如何使用iText做到这一点?
感谢的
答案 0 :(得分:2)
必须在追加模式下创建PdfStamper
。
var stamper = new PdfStamper(reader, outputPdfStream, '\0', true);