PPT
DOCX
XLSX
PDF
ODP
PPTX
Python で PPTX からコメントとコメント作成者を削除する
サーバー側 API を使用して、独自の Python スクリプトを作成し、ドキュメント ファイル内のコメントと作成者を操作します。
Python 経由で PPTX からコメントを削除する
PPTX ファイルから注釈を削除するには、機能豊富な Aspose.Slides for Python via .NET 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 からコメントを削除する方法
Install Aspose.Slides for Python via .NET. See Installation .
Presentation クラスのインスタンスを使用して PPTX をロードする
読み込まれた PPTX のすべての作成者を反復処理します
著者のすべてのコメントを削除する
最後にすべての作成者を削除します