PPTX
DOCX
XLSX
PDF
ODP
PPT
Python で PPT からコメントとコメント作成者を削除する
サーバー側 API を使用して、独自の Python スクリプトを作成し、ドキュメント ファイル内のコメントと作成者を操作します。
Python 経由で PPT からコメントを削除する
PPT ファイルから注釈を削除するには、 .NET 経由の Python 用 Aspose.Slides API を使用します。 Python プラットフォーム用の強力で使いやすいドキュメント操作 API。
PPT から注釈を削除する - Python
import aspose.slides as slides
with slides.Presentation("example.ppt") 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 経由で PPT からコメントを削除する方法
Install Aspose.Slides for Python via .NET. See Installation .
プレゼンテーション クラスのインスタンスを使用して PPT をロードする
ロードされた PPT のすべての作成者を反復する
著者のすべてのコメントを削除する
最後にすべての作成者を削除します