我正在使用 C# 和 iTextSharp 3.1 对 PDF 文件进行签名。签名工作正常,但我想在文件的最后一页上签名。我使用的代码是这样的:
reader = new PdfReader(inputPDF);
int numberOfPages = reader.NumberOfPages;
PdfStamper st = PdfStamper.CreateSignature(reader, new FileStream(outputPDF, FileMode.Create, FileAccess.Write), '\0', null, true);
PdfSignatureAppearance sap = st.SignatureAppearance;
if (logoSign != null)
{
// Scale img to fit
logoSign.ScaleToFit(100, 50);
// Set Signature position on page
logoSign.SetAbsolutePosition(300, 80);
sap.Image = logoSign;
}
sap.SetCrypto(this.myCert.Akp, this.myCert.Chain, null, PdfSignatureAppearance.VERISIGN_SIGNED);
if (SigReason.Length > 0)
sap.Reason = SigReason;
if (SigContact.Length > 0)
sap.Contact = SigContact;
if (SigLocation.Length > 0)
sap.Location = SigLocation;
if (visible)
sap.SetVisibleSignature(mySignRect, 1, null);
try
{
st.Close();
} catch(Exception e) { }
此代码标志文件的第一页。我想在文件的最后一页签名。如何设置在最后一页签名。我也想知道,相同的代码在 iTextSharp5.4.2 中不起作用。它在 sap.SetCrypto() 和 st.Close() 上给出错误。知道如何让它在 5.4.2 中工作。
谢谢