Save Presentations in Java

Overview

Open Presentations in Java described how to use the Presentation class to open a presentation. This article explains how to create and save presentations. The Presentation class contains a presentation’s contents. Whether you’re creating a presentation from scratch or modifying an existing one, you’ll want to save it when you’re finished. With Aspose.Slides for Java, you can save to a file or stream. This article explains the different ways to save a presentation.

Save Presentations to Files

Save a presentation to a file by calling the Presentation class’s save method. Pass the file name and save format to the method. The following example show how to save a presentation with Aspose.Slides.

// Instantiate the Presentation class that represents a presentation file.
Presentation presentation = new Presentation();
try {
    // Do some work here...

    // Save the presentation to a file.
    presentation.save("Output.pptx", SaveFormat.Pptx);
} finally {
    presentation.dispose();
}

Save Presentations to Streams

You can save a presentation to a stream by passing an output stream to the Presentation class’s save method. A presentation can be written to many stream types. In the example below, we create a new presentation and save it to a file stream.

// Instantiate the Presentation class that represents a presentation file.
Presentation presentation = new Presentation();
try {
    OutputStream fileStream = new FileOutputStream("Output.pptx");
    try {
        // Save the presentation to the stream.
        presentation.save(fileStream, SaveFormat.Pptx);
    } finally {
        fileStream.close();
    }
} finally {
    presentation.dispose();
}

Save Presentations with a Predefined View Type

Aspose.Slides lets you set the initial view that PowerPoint uses when the generated presentation opens through the ViewProperties class. Use the setLastView method with a value from the ViewType enumeration.

Presentation presentation = new Presentation();
try {
    presentation.getViewProperties().setLastView(ViewType.SlideMasterView);
    presentation.save("SlideMasterView.pptx", SaveFormat.Pptx);
} finally {
    presentation.dispose();
}

Save Presentations in the Strict Office Open XML Format

Aspose.Slides lets you save a presentation in the Strict Office Open XML format. Use the PptxOptions class and set its conformance property when saving. If you set Conformance.Iso29500_2008_Strict, the output file is saved in the Strict Office Open XML format.

The example below creates a presentation and saves it in the Strict Office Open XML format.

PptxOptions options = new PptxOptions();
options.setConformance(Conformance.Iso29500_2008_Strict);

// Instantiate the Presentation class that represents a presentation file.
Presentation presentation = new Presentation();
try {
    // Save the presentation in the Strict Office Open XML format.
    presentation.save("StrictOfficeOpenXml.pptx", SaveFormat.Pptx, options);
} finally {
    presentation.dispose();
}

Save Presentations in Office Open XML Format in Zip64 Mode

An Office Open XML file is a ZIP archive that imposes 4 GB (2^32 bytes) limits on the uncompressed size of any file, the compressed size of any file, and the total size of the archive, and it also limits the archive to 65,535 (2^16-1) files. ZIP64 format extensions raise these limits to 2^64.

The IPptxOptions.setZip64Mode method lets you choose when to use ZIP64 format extensions when saving an Office Open XML file.

This method can be used with the following modes:

  • IfNecessary uses ZIP64 format extensions only if the presentation exceeds the limitations above. This is the default mode.
  • Never never uses ZIP64 format extensions.
  • Always always uses ZIP64 format extensions.

The following code demonstrates how to save a presentation as PPTX with ZIP64 format extensions enabled:

PptxOptions pptxOptions = new PptxOptions();
pptxOptions.setZip64Mode(Zip64Mode.Always);

Presentation presentation = new Presentation("Sample.pptx");
try {
    presentation.save("OutputZip64.pptx", SaveFormat.Pptx, pptxOptions);
} finally {
    presentation.dispose();
}

Save Presentations without Refreshing the Thumbnail

The PptxOptions.setRefreshThumbnail method controls thumbnail generation when saving a presentation to PPTX:

  • If set to true, the thumbnail is refreshed during save. This is the default.
  • If set to false, the current thumbnail is preserved. If the presentation has no thumbnail, none is generated.

In the code below, the presentation is saved to PPTX without refreshing its thumbnail.

PptxOptions pptxOptions = new PptxOptions();
pptxOptions.setRefreshThumbnail(false);

Presentation presentation = new Presentation("Sample.pptx");
try {
    presentation.save("Output.pptx", SaveFormat.Pptx, pptxOptions);
}
finally {
    presentation.dispose();
}

Save Progress Updates in Percentage

The IProgressCallback interface is used via the setProgressCallback method exposed by the ISaveOptions interface and the abstract SaveOptions class. Assign an IProgressCallback implementation with setProgressCallback to receive save-progress updates as a percentage.

The following code snippets show how to use IProgressCallback.

ISaveOptions saveOptions = new PdfOptions();
saveOptions.setProgressCallback(new ExportProgressHandler());

Presentation presentation = new Presentation("Sample.pptx");
try {
    presentation.save("Output.pdf", SaveFormat.Pdf, saveOptions);
} finally {
    presentation.dispose();
}
class ExportProgressHandler implements IProgressCallback {
    public void reporting(double progressValue) {
        // Use the progress percentage value here.
        int progress = (int) progressValue;

        System.out.println(progress + "% of the file has been converted.");
    }
}