إنشاء عرض تقديمي

إنشاء عرض PowerPoint

لإضافة خط بسيط إلى شريحة مختارة من العرض التقديمي، يرجى اتباع الخطوات التالية:

  1. إنشاء مثيل من فئة Presentation.
  2. الحصول على مرجع شريحة باستخدام الفهرس الخاص بها.
  3. إضافة AutoShape من نوع LINE باستخدام طريقة add_auto_shape المعروضة بواسطة كائن shapes.
  4. كتابة العرض التقديمي المعدل كملف PPTX.

في المثال الموضح أدناه، أضفنا خطًا إلى الشريحة الأولى من العرض التقديمي.

import aspose.slides as slides

# Instantiate a Presentation object that represents a presentation file
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)