5

我正在尝试使用 Python 获取 powerpoint 文件的每张幻灯片的标题。我在 Python 中使用 Presentation 包,但找不到任何指定标题的内容。我有这段代码可以返回 powerpoint 文件的内容。但我需要指定标题。

from pptx import Presentation

prs = Presentation("pp.pptx")

# text_runs will be populated with a list of strings,
# one for each text run in presentation
text_runs = []

for slide in prs.slides:
    for shape in slide.shapes:
        if not shape.has_text_frame:
            continue
        for paragraph in shape.text_frame.paragraphs:
            for run in paragraph.runs:
                text_runs.append(run.text)
4

2 回答 2

6

这是我的解决方案:

from pptx import Presentation

filename = path_of_pptx

prs = Presentation(filename)

for slide in prs.slides:
    title = slide.shapes.title.text
    print(title)

输入:

在此处输入图像描述

输出:

Hello, World!
Hello, World2!
Hello, World3!
于 2016-11-26T17:58:00.080 回答
0

正如@scanny 指出的那样,以@eyllanesc 的答案为基础,slide.shapes.title是一个占位符。

这意味着您可以访问标题文本,例如:

from pptx import Presentation

prs = Presentation(ppt_filename)

slide = prs.slides[0]
slide.shapes.title.text = 'New Title'
print('New Title is:')
print(slide.shapes.title.text)

并更改任何其他标题占位符属性,例如:

slide.shapes.title.top = 100
slide.shapes.title.left = 100
slide.shapes.title.height = 200
于 2020-05-04T17:00:35.660 回答