Merge PPTX Files and Export to HTML in Python
Combine PowerPoint presentations and export the merged slides as an HTML5 document with a cross-platform Python API
Merge PPTX to HTML in Python
Aspose.Slides for Python via .NET
lets you merge PowerPoint PPTX files by cloning slides from one presentation into another. After combining the slides with SlideCollection.add_clone, call Presentation.save with SaveFormat.HTML5 to export the merged presentation as an HTML5 document.
Merge PPTX files to HTML using Python
Open the destination and source PPTX presentations, append a clone of each source slide, and save the merged presentation as HTML5.
Python code for merging PPTX files into an HTML5 document
with slides.Presentation("destination.pptx") as destination_presentation:
with slides.Presentation("source.pptx") as source_presentation:
for slide in source_presentation.slides:
destination_presentation.slides.add_clone(slide)
destination_presentation.save("merged-presentation.html", slides.export.SaveFormat.HTML5)
How to merge PPTX files and export to HTML with Aspose.Slides for Python
Follow these steps to merge two PPTX files and export the result as an HTML5 document.
Install the
aspose-slidespackage by following the Aspose.Slides for Python via .NET installation guide .Make the
aspose.slidesnamespace available in your Python project.Open the destination and source PPTX files as
Presentationinstances.Iterate through the source slides and call
SlideCollection.add_clonefor each slide.Call
Presentation.savewithSaveFormat.HTML5to write the merged presentation as an HTML5 document.
Export PPTX to Other Supported Formats
You can also combine PPTX presentations and save them in other supported formats.