プレゼンテーションの作成
Contents
[
Hide
]
PowerPointプレゼンテーションの作成
選択したスライドにシンプルな直線を追加するには、以下の手順に従ってください。
- Presentationクラスのインスタンスを作成します。
- インデックスを使用してスライドの参照を取得します。
shapes
オブジェクトによって公開されているadd_auto_shape
メソッドを使用して、LINE
タイプのAutoShapeを追加します。- 修正されたプレゼンテーションを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)