Convert PDF to Image in Java

Convert PDF files to Image with Aspose.Slides for Java without Adobe Acrobat.

Convert PDF to Image in Java

Aspose.Slides for Java lets you import PDF files into a presentation and render slides as Image images. With this Java API, you can convert PDF content without Adobe Acrobat.

Convert PDF to Image using Java

To convert PDF to Image, create a Presentation, import the source file with ISlideCollection.addFromPdf, and render the imported slides as images.

Java code for converting PDF into Image

Presentation presentation = new Presentation();
try {
    presentation.getSlides().addFromPdf("input.pdf");
    for (ISlide slide : presentation.getSlides()) {
        IImage slideImage = slide.getImage(1f, 1f);
        try {
            slideImage.save("slide_" + slide.getSlideNumber() + ".png", ImageFormat.Png);
        } finally {
            slideImage.dispose();
        }
    }
} finally {
    presentation.dispose();
}

How to convert PDF to Image using Aspose.Slides for Java API

These are the steps to convert PDF to Image in Java.

  1. Install Aspose.Slides for Java .

  2. Add a library reference (import the library) to your Java project.

  3. Open the source PDF file in Java.

  4. Save each slide as a Image image.

Free Online Converter

Convert presentations and slides online.

Convert PDF To Other Supported Formats

You can also convert PDF and save to other file formats. See all supported formats below