PPT
DOCX
XLSX
PDF
ODP
PPTX
在 Python 中从 PPTX 中删除评论和评论作者
构建您自己的 Python 脚本,以使用服务器端 API 操作文档文件中的评论和作者。
通过 Python 从 PPTX 中删除评论
为了从 PPTX 文件中删除注释,我们将使用 Aspose.Slides for Python via .NET API,这是一个功能丰富的 API,强大且易于使用的 Python 平台文档操作 API。
从 PPTX 中删除注释 - Python
import aspose.slides as slides
with slides.Presentation("example.pptx") 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 从 PPTX 中删除评论
通过 .NET 安装 Aspose.Slides for Python。请参阅 安装 。
使用 Presentation 类的实例加载 PPTX
遍历加载的 PPTX 的所有作者
删除作者的所有评论
最后删除所有作者