DOCX
JPG
PDF
XML
PPT
BMP
Convert PPT to BMP in Java
Render PPT slides as BMP images using Aspose.Slides for Java without Microsoft PowerPoint.
Convert PPT to BMP Using Java
Use
Aspose.Slides for Java
to load a PPT presentation and render slides as BMP images. You can install the aspose-slides package in a Maven-based project by adding the repository and dependency below.
Repository
<repository>
<id>AsposeJavaAPI</id>
<name>Aspose Java API</name>
<url>https://releases.aspose.com/java/repo/</url>
</repository>
Dependency
<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-slides</artifactId>
<version>version of aspose-slides API</version>
<classifier>jdk17</classifier>
</dependency>
How to Convert PPT to BMP via Java
Java developers can convert a PPT file to BMP in just a few lines of code.
- Load the
PPTfile with thePresentationclass. - Iterate through the
ISlidecollection returned byPresentation.getSlides. - Render each slide with the
ISlide.getImagemethod. - Save each
IImageobject withImageFormat.Bmp.
System Requirements
Before running the Java conversion sample code, make sure that you have the following prerequisites.
- Microsoft Windows, Linux, macOS, or another OS with a supported Java Runtime Environment.
- Get the latest version of Aspose.Slides for Java from Maven.
PPT to BMP Java Conversion Source Code
Presentation presentation = new Presentation("presentation.ppt");
try {
for (ISlide slide : presentation.getSlides()) {
IImage slideImage = slide.getImage(1f, 1f);
try {
slideImage.save("slide_" + slide.getSlideNumber() + ".bmp", ImageFormat.Bmp);
} finally {
slideImage.dispose();
}
}
} finally {
presentation.dispose();
}
Free App to Convert PPT to BMP
Convert presentations and slides online.
Other Supported Conversions
You can also convert PPT into many other file formats including the ones listed below.
PPT TO GIF (Graphical Interchange Format)
PPT TO HTML (Hyper Text Markup Language)
PPT TO JPEG (JPEG Image)
PPT TO ODP (OpenDocument Presentation Format)
PPT TO OTP (OpenDocument Standard Format)
PPT TO PDF (Portable Document Format)
PPT TO PNG (Portable Network Graphics)
PPT TO POT (Microsoft PowerPoint Template Files)
PPT TO POTM (Microsoft PowerPoint Template File)
PPT TO POTX (Microsoft PowerPoint Template Presentation)
PPT TO PPS (PowerPoint Slide Show)
PPT TO PPSM (Macro-enabled Slide Show)
PPT TO PPSX (PowerPoint Slide Show)
PPT TO PPTM (Macro-enabled Presentation File)
PPT TO PPTX (Open XML presentation Format)
PPT TO SVG (Scalable Vector Graphics)
PPT TO SWF (SWF Format)
PPT TO TIFF (Tagged Image Format)
PPT TO Video (Video File)
PPT TO Word (Microsoft Word Document)
PPT TO XPS (XML Paper Specifications)