创建演示文稿

创建 PowerPoint 演示文稿

要向演示文稿的选定幻灯片添加一条简单的直线,请按照以下步骤操作:

  1. 创建一个 Presentation 类的实例。
  2. 使用索引获取幻灯片的引用。
  3. 使用 shapes 对象中公开的 add_auto_shape 方法添加一个类型为 LINE 的 AutoShape。
  4. 将修改后的演示文稿写入 PPTX 文件。

在下面给出的示例中,我们向演示文稿的第一张幻灯片添加了一条线。

import aspose.slides as slides

# 实例化一个表示演示文稿文件的 Presentation 对象
with slides.Presentation() as presentation:
    slide = presentation.slides[0]
    slide.shapes.add_auto_shape(slides.ShapeType.LINE, 50, 150, 300, 0)
    presentation.save("NewPresentation_out.pptx", slides.export.SaveFormat.PPTX)