PPT
DOCX
XLSX
PDF
ODP
ODP
在 Python 中從 ODP 中刪除評論和評論作者
構建您自己的 Python 腳本,以使用服務器端 API 操作文檔文件中的評論和作者。
通過 Python 從 ODP 中刪除評論
為了從 ODP 文件中刪除註釋,我們將使用 Aspose.Slides for Python via .NET API,這是一個功能豐富的 API,適用於 Python 平台的強大且易於使用的文檔操作 API。
從 ODP 中刪除註釋 - Python
import aspose.slides as slides
with slides.Presentation("example.odp") as presentation:
# Deletes all comments from the presentation
for author in presentation.comment_authors:
author.comments.clear()
# Deletes all authors
presentation.comment_authors.clear()
presentation.save("example_out.pptx", slides.export.SaveFormat.PPTX)
如何通過 Python 從 ODP 中刪除評論
通過 .NET 安裝 Aspose.Slides for Python。請參閱 安裝 。
使用 Presentation 類的實例加載 ODP
遍歷加載的 ODP 的所有作者
刪除作者的所有評論
最後刪除所有作者