Python将图像插入现有PowerPoint的中间

时间:2016-03-07 16:17:08

标签: python powerpoint python-pptx

我有一个包含20张幻灯片的PowerPoint演示文稿。此演示文稿用作模板,每张幻灯片具有不同的背景。我想采用这个(现有的)PowerPoint演示文稿,在幻灯片编号4中插入图像(对前3个图像不做任何操作)并将其另存为新的PowerPoint演示文稿。

这就是我现在所拥有的。此代码加载现有演示文稿并将其另存为新演示文稿。现在我只需要知道如何使用它将图像插入到如上所述的4号幻灯片中。

注意:我使用普通的Python。

from pptx import Presentation

def open_PowerPoint_Presentation(oldFileName, newFileName):
    prs = Presentation(oldFileName)
    #Here I guess I need to type something to complete the task.
    prs.save(newFileName)

open_PowerPoint_Presentation('Template.pptx', 'NewTemplate.pptx')

1 个答案:

答案 0 :(得分:3)

我对这个模块并不熟悉,但我查看了他们的quickstart

from pptx.util import Inches
from pptx import Presentation

def open_PowerPoint_Presentation(oldFileName, newFileName, img, left, top):
    prs = Presentation(oldFileName)
    slide = prs.slides[3]
    pic = slide.shapes.add_picture(img, left, top)
    prs.save(newFileName)

open_PowerPoint_Presentation('Template.pptx', 'NewTemplate.pptx',
                             'mypic.png', Inches(1), Inches(1))