Convert JPG to PPT in Java

Powerful cross-platform Java API for converting JPG to PPT using Java code

Convert JPG to PPT using Aspose.Slides

Aspose.Slides for Java is a powerful Java library used to create, convert, and manipulate PowerPoint presentations, PDFs, HTML docs, and other files. When you convert JPG to PPT, you are essentially creating a PowerPoint presentation that contains slides based on JPG images.

Convert JPG to PPT in Java

Using Aspose.Slides for Java , you can convert JPG image to PowerPoint presentation with just a few lines of code:

Java code for converting JPG to PPT

Presentation pres = new Presentation();
try {
	ISlide slide = pres.getSlides().get_Item(0);
	IPPImage image = pres.getImages().addImage(Files.readAllBytes(Paths.get("image.jpg")));
	slide.getShapes().addPictureFrame(ShapeType.Rectangle, 10, 10, 100, 100, image);

	pres.save("pres.ppt", SaveFormat.Ppt);
} finally {
	if (pres != null) pres.dispose();
}

How to convert JPG to PPT in Java

  1. Install Aspose.Slides for Java. See Installation .

  2. Add the library as a reference in your project.

  3. Create an instance of the Presentation class.

  4. Load the JPG image you want to convert to PPT.

  5. Save the resulting file as a PPT presentation.

Free Online Converter

How to Convert PPT to HTML in Python

Other Supported PowerPoint Conversions

You can also convert files in other formats to PowerPoint