有没有办法使用相同的字段名称来SetVisibleSignature?

时间:2019-01-14 17:21:00

标签: c# pdf itext x509certificate signature

我有以下代码,该代码位于函数内以多次对PDF文件进行签名:

    PdfStamper stamper = null;
    stamper = PdfStamper.CreateSignature(reader, fout, '\0', null, true);
    PdfSignatureAppearance appearance = stamper.SignatureAppearance;
    appearance.SetVisibleSignature(new iTextSharp.text.Rectangle(20, 10, 170, 60), 1, ourCompany);

我想成功地添加同一家公司的第二个签名,而不会出现错误“字段ourCompany已经存在”。

当我第二次对PDF文件签名时,是否可以使用相同的字段名称设置新的可见签名?还是有另一种方法来实现这一目标?我正在使用iTextSharp 5.5.11。

0 个答案:

没有答案