如何使用Python从PowerPoint演示文稿幻灯片中提取批注

2022-03-11 00:00:00 python powerpoint python-pptx

问题描述

我需要从一系列PowerPoint演示文稿中提取批注(使用Microsoft PowerPoint批注功能)。

以下链接说明如何在C#中执行此操作:

https://www.e-iceblue.com/Tutorials/Spire.Presentation/Spire.Presentation-Program-Guide/Comment-and-Note/Extract-comments-from-presentation-slides-and-save-in-txt-file.html

似乎python-pptx没有从PowerPoint读取/写入评论的功能:

https://python-pptx.readthedocs.io/en/latest/

如果存在这样的功能,我在上面的文档中找不到。

有什么方法可以做到这一点吗?


解决方案

我能够做到这一点,方法是使用Win32com访问注释对象并从那里操作它,如K753所建议的:

import win32com.client
ppt_dir = 'test.pptx'
ppt_app = win32com.client.GetObject(ppt_dir)

for ppt_slide in ppt_app.Slides:
    for comment in ppt_slide.Comments:
        print(comment.Text)

以下文档提供了有关Comment对象的更多详细信息:

https://docs.microsoft.com/en-us/office/vba/api/powerpoint.comment

相关文章