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

Modifica le proprietà POTX utilizzando Python

Crea le tue app Python per modificare le proprietà integrate e personalizzate nei file di presentazione utilizzando le API lato server.

Modifica le proprietà POTX tramite Python

Utilizzando Aspose.Slides for Python via .NET, gli sviluppatori possono accedere e modificare i valori delle proprietà integrate e delle proprietà personalizzate. Gli sviluppatori possono utilizzare la proprietà DocumentProperties esposta dall’oggetto Presentation per accedere alle proprietà del documento del file di presentazione.

Modifica proprietà integrate POTX - Python


import aspose.slides as slides

# Instantiate the Presentation class that represents the Presentation
with slides.Presentation(path + "ModifyBuiltinProperties.potx") 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.potx", slides.export.SaveFormat.POTX)

Aggiungi proprietà personalizzate a POTX - 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.potx", slides.export.SaveFormat.POTX)

Come estrarre i metadati di POTX tramite Python

Questi sono i passaggi per estrarre i metadati dai file POTX.

  1. Crea un’istanza della classe Presentation con il percorso del file POTX

  2. Ottenere l’oggetto DocumentProperties associato alla presentazione

  3. Passa sugli elementi nell’oggetto DocumentProperties

  4. Accedi e modifica le proprietà personalizzate

Altri formati di metadati supportati

Usando Python, puoi anche manipolare i metadati di molti altri formati tra cui.