# Convert PPS to BMP in Node.js

> Convert PPS to BMP in Node.js. Use the Node.js API to convert PPS files to BMP images.

Source: https://products.aspose.com/slides/nodejs-java/conversion/pps-to-bmp/
Updated: 2026-07-13



## Convert PPS to BMP in Node.js

[**Aspose.Slides for Node.js via Java**](/slides/nodejs-java/) lets developers create, read, edit, and convert presentation files in Node.js applications. You can load a `PPS` file with the `Presentation` class and export its slides to `BMP` images by using the presentation API.

## Convert PPS to BMP using Node.js

To convert `PPS` to `BMP`, create a `Presentation` from the source file and export each slide to a `BMP` image.

### Node.js code to convert PPS to BMP

```javascript
const presentation = new aspose.slides.Presentation("sourceFile.pps");
try {
    const slideCount = presentation.getSlides().size();
    for (let slideIndex = 0; slideIndex < slideCount; slideIndex++) {
        const slide = presentation.getSlides().get_Item(slideIndex);
        const slideImage = slide.getImage(2, 2);
        try {
            const filePath = "slide_" + slide.getSlideNumber() + ".bmp";
            slideImage.save(filePath, aspose.slides.ImageFormat.Bmp);
        }
        finally {
            slideImage.dispose();
        }
    }
}
finally {
    presentation.dispose();
}
```

## How to convert PPS to BMP using Aspose.Slides for Node.js via Java API

To convert PPS to BMP using Aspose.Slides for Node.js via Java, import the package, load the source file with the Presentation class, and export slides as images.

Install [**Aspose.Slides for Node.js via Java**](/slides/nodejs-java/).

Import the `aspose.slides.via.java` package in your Node.js project.

Load the source `PPS` file with the `Presentation` class.

Render each slide with `getImage` and save it with `ImageFormat.Bmp`.

## Convert PPS to Other Supported Formats

- [PPS TO PPTX](/slides/nodejs-java/conversion/pps-to-pptx/)
- [PPS TO PPT](/slides/nodejs-java/conversion/pps-to-ppt/)
- [PPS TO PDF](/slides/nodejs-java/conversion/pps-to-pdf/)
- [PPS TO HTML](/slides/nodejs-java/conversion/pps-to-html/)
- [PPS TO PNG](/slides/nodejs-java/conversion/pps-to-png/)
- [PPS TO JPG](/slides/nodejs-java/conversion/pps-to-jpg/)
- [PPS TO FODP](/slides/nodejs-java/conversion/pps-to-fodp/)
- [PPS TO GIF](/slides/nodejs-java/conversion/pps-to-gif/)
- [PPS TO ODP](/slides/nodejs-java/conversion/pps-to-odp/)
- [PPS TO OTP](/slides/nodejs-java/conversion/pps-to-otp/)
- [PPS TO POT](/slides/nodejs-java/conversion/pps-to-pot/)
- [PPS TO POTM](/slides/nodejs-java/conversion/pps-to-potm/)
- [PPS TO POTX](/slides/nodejs-java/conversion/pps-to-potx/)
- [PPS TO PPSM](/slides/nodejs-java/conversion/pps-to-ppsm/)
- [PPS TO PPSX](/slides/nodejs-java/conversion/pps-to-ppsx/)
- [PPS TO PPTM](/slides/nodejs-java/conversion/pps-to-pptm/)
- [PPS TO SVG](/slides/nodejs-java/conversion/pps-to-svg/)
- [PPS TO TIFF](/slides/nodejs-java/conversion/pps-to-tiff/)
