通过 Python 向 PDF 添加数字签名

使用服务器端 Aspose.PDF 为 Python for .NET API 生成和验证数字签名。原生和高性能库

如何使用 Python for .NET 庫將數位簽名添加到 PDF 檔

為了在PDF檔中添加數位簽名,我們將使用[Aspose.PDF用於.NET](https://products.aspose.com/pdf/net)API,這是一個功能豐富,功能強大且易於使用的文檔操作API,適用於 python-net 平臺。打開 [NuGet](https://www.nuget.org/packages/aspose.pdf) 包管理器,搜索“.PDF”並安裝。您也可以從程式包管理器主控台使用以下命令。

Python Package Manager Console

pip install aspose-pdf

通過Python將數位簽名添加到 PDF


您需要 [Aspose.PDF用於.NET](https://releases.aspose.com/pdf/net)來嘗試環境中的代碼。

  1. 載入包含文件實例的 PDF。
  2. 載入所有具有完整路徑的PDF檔。 設置文字的樣式,如字體,字體大小,顏色等。 保存PDF檔,您將獲得插入簽名的文件。
  3. 要驗證簽名的有效性,請使用簽名()方法。

使用-Python 向 PDF 文件添加电子签名

此示例代码说明如何为 PDF 页面签名-Python

Input file:

File not added

Certificate file:

File not added

Output format:

Output file:

import aspose.pdf as ap

inFile = "DigitallySign.pdf"
outFile = "DigitallySign_out.pdf"
document = ap.Document(inFile)
signature = ap.facades.PdfFileSignature(document)
# Use PKCS7/PKCS7Detached objects
pkcs = ap.forms.PKCS7("C:\\Keys\\test.pfx", "Pa$$w0rd2020")

signature.sign(1, True, ap.Rectangle(300, 100, 400, 200, True), pkcs)
# Save output PDF file
signature.save(outFile)