通过 Python 保护 PDF

使用 AES-128 加密为 PDF 设置文档权限。使用 Aspose.PDF for Python for .NET 以编程方式修改 PDF 文档

如何使用 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 for .NET 在您的環境中嘗試代碼。

  1. 載入包含文件實例的 PDF。
  2. 建立文件特權的物件 > 設定選項。
  3. 呼叫文件加密方法,使用 AES-128 保護 PDF。
  4. 以PDF格式保存結果

保護 PDF - Python

此示例代码显示了如何保护 PDF 文件

import aspose.pdf as ap 
# Open document
dataDir = "..."
document = ap.Document(dataDir + "sample.pdf")
# instantiate DocumentPrivileges object
# apply restrictions on all privileges
documentPrivilege = ap.facades.documentPrivilege.forbid_all
# allow screen reading
documentPrivilege.allow_screen_readers = True
# encrypt the file with User and Owner password.
document.Encrypt("userpassword", "ownerpassword", 
    documentPrivilege, ap.CryptoAlgorithm.AE_SX128, False)
# save updated document
document.Save("protected.pdf")