Compress PPT File Online or using Android App
Develop powerful android based PPT document compression applications. Freely compress various documents including PPT files online via app with instant download.
Compress and Optimize PPT Files Online
- Upload PPT files to compress and optimize.
- Choose the Compression Level (Low, Medium or High)
- Click the “Compress” button.
- Download the compressed PPT file.
- View and get the result of compression by checking its size and content quality.
Compress PPT File via Android App
- Add Java library reference into the project
- Load the document using Presentation class.
- Use the getDigitalSignatures().add(signatureObj) class object.
- Set the compression as of your requirement
- Use any removeUnusedMasterSlides, removeUnusedLayoutSlides or compressEmbeddedFonts option.
- Call save method and get the compressed PPT file.
Java Code : Compress PPT Files
Presentation pres = new Presentation("pres.pptx"); | |
try { | |
Compress.removeUnusedMasterSlides(pres); | |
// Compress.removeUnusedLayoutSlides(pres); | |
// Compress.compressEmbeddedFonts(pres); | |
pres.save("pres-out.pptx", SaveFormat.Pptx); | |
} finally { | |
if (pres != null) pres.dispose(); | |
} |
Develop PPT File Compression Application for Android
Need to develop android script or utility app to easily compress multiple PPT files? With
Aspose.Slides for Android via Java
, child APIs of
Aspose.Total for Android via Java
, any android developer can integrate the above API code to program compression app across documents. Powerful Android library for document compression supports many popular formats including PPT format.
Android Compression Library for PPT Files
- We host our Java packages in Maven repositories .
- Aspose.Slides for Java is a common JAR file containing byte-code.
- Follow the step-by-step instructions on how to install Aspose.Slides for Android via Java.
System Requirements
- J2SE 6.0 (Java 1.6) and higher
- Java package is cross-platform and runs on all operating systems with JVM implementation.
For more details please refer to [Product Documentation](https://docs.aspose.com/slides/java/system-requirements/).