PPT PPTX ODP POT ppsx
Aspose.Slides  for Python via .NET
PPT

Edit properti PPT menggunakan Python

Bangun aplikasi Python Anda sendiri untuk mengubah properti Bawaan dan Kustom dalam file presentasi menggunakan API sisi server.

Ubah Properti PPT melalui Python

Dengan menggunakan Aspose.Slides for Python via .NET, developer dapat mengakses dan mengubah nilai properti bawaan serta properti kustom. Pengembang dapat menggunakan properti DocumentProperties yang diekspos oleh objek Presentasi untuk mengakses properti dokumen dari file presentasi.

Modifikasi PPT Properti Bawaan - Python


import aspose.slides as slides

# Instantiate the Presentation class that represents the Presentation
with slides.Presentation(path + "ModifyBuiltinProperties.ppt") as presentation:
    # Create a reference to object associated with Presentation
    documentProperties = presentation.document_properties

    # Set the builtin properties
    documentProperties.author = "Aspose.Slides for Python"
    documentProperties.title = "Modifying Presentation Properties"
    documentProperties.subject = "Aspose Subject"
    documentProperties.comments = "Aspose Description"
    documentProperties.manager = "Aspose Manager"

    # save your presentation to a file
    presentation.save("DocumentProperties_out.ppt", slides.export.SaveFormat.PPT)

Tambahkan Properti Kustom ke PPT - Python


import aspose.slides as slides

# Instantiate the Presentation class
with slides.Presentation() as presentation:
    # Getting Document Properties
    documentProperties = presentation.document_properties

    # Adding Custom properties
    documentProperties.set_custom_property_value("New Custom", 12)
    documentProperties.set_custom_property_value("My Nam", "Aspose Metadata Editor")
    documentProperties.set_custom_property_value("Custom", 124)

    # Getting property name at particular index
    getPropertyName = documentProperties.get_custom_property_name(2)

    # Removing selected property
    documentProperties.remove_custom_property(getPropertyName)

    # Saving presentation
    presentation.save("CustomDocumentProperties_out.ppt", slides.export.SaveFormat.PPT)

Cara Mengekstrak Metadata PPT melalui Python

Ini adalah langkah-langkah untuk Mengekstrak Metadata dari file PPT.

  1. Buat instance kelas Presentasi dengan jalur ke file PPT

  2. Dapatkan objek DocumentProperties yang terkait dengan Presentasi

  3. Ulangi item dalam objek DocumentProperties

  4. Akses dan ubah properti khusus

Format Metadata Lain yang Didukung

Menggunakan Python, Anda juga dapat memanipulasi metadata dari banyak format lain termasuk.