PPT PPTX ODP POT ppsx
Aspose.Slides  for Python via .NET
ODP

使用 Python 解鎖 ODP

構建您自己的 Python 應用程序以從 PowerPoint 中刪除密碼並使用服務器端 API 解密演示文稿文件。

通過 Python 從 ODP 演示文稿中刪除加密

使用 Aspose.Slides for Python via .NET,您可以取消對 ODP 演示文稿的加密或密碼保護。這樣,用戶就可以不受限制地訪問或修改 ODP 表示。

使用 Python 從 ODP 禁用密碼保護


import aspose.slides as slides

loadOptions = slides.LoadOptions()
loadOptions.password = "123123"
with slides.Presentation("encrypted-pres.odp", loadOptions) as pres:
    pres.protection_manager.remove_encryption()
    pres.save("encryption-removed.odp", slides.export.SaveFormat.ODP)

使用 Python 從 ODP 演示文稿中刪除寫保護


import aspose.slides as slides

with slides.Presentation("write-protected-pres.odp") as pres:
    pres.protection_manager.remove_write_protection()
    pres.save("write-protection-removed.odp", slides.export.SaveFormat.ODP)

如何通過 Python 從 ODP 中刪除密碼

這些是取消 ODP 文件保護的步驟。

  1. 使用 Presentation 實例加載 ODP

  2. 使用 ProtectionManager 類刪除寫保護

  3. 以 ODP 格式保存結果

其他支持的格式

使用 Python,您還可以取消對以下格式的保護: