Convert PDF to PNG in Java

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

Convert PDF to PNG in Java

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

Convert PDF to PNG using Java

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

Java code for converting PDF into PNG

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 PNG using Aspose.Slides for Java API

These are the steps to convert PDF to PNG 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 PNG 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