Compress ODP File Online or using Android App
Develop powerful android based ODP document compression applications. Freely compress various documents including ODP files online via app with instant download.
Compress and Optimize ODP Files Online
- Upload ODP files to compress and optimize.
- Choose the Compression Level (Low, Medium or High)
- Click the “Compress” button.
- Download the compressed ODP file.
- View and get the result of compression by checking its size and content quality.
Compress ODP 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 ODP file.
Java Code : Compress ODP 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 ODP File Compression Application for Android
Need to develop android script or utility app to easily compress multiple ODP 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 ODP format.
Android Compression Library for ODP 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/).