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