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

Redigera egenskaper för PPT med Python

Bygg dina egna Python-appar för att ändra inbyggda och anpassade egenskaper i presentationsfiler med hjälp av API:er på serversidan.

Ändra PPT-egenskaper via Python

Med hjälp av Aspose.Slides for Python via .NET kan utvecklare komma åt och ändra värdena för inbyggda egenskaper såväl som anpassade egenskaper. Utvecklare kan använda egenskapen DocumentProperties som exponeras av Presentation-objektet för att komma åt presentationsfilens dokumentegenskaper.

Ändra PPT inbyggda egenskaper - 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)

Lägg till anpassade egenskaper i 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)

Hur man extraherar metadata för PPT via Python

Det här är stegen för att extrahera metadata från PPT-filer.

  1. Instantiera presentationsklassen med sökvägen till filen PPT

  2. Hämta DocumentProperties-objekt kopplat till Presentation

  3. Slinga över objekten i DocumentProperties-objektet

  4. Få tillgång till och ändra anpassade egenskaper

Andra metadataformat som stöds

Med hjälp av Python kan du också manipulera metadata i många andra format, inklusive.