Merge Image to PDF in Java
Use Aspose.Slides for Java to merge images in Java applications.
Merge image to PDF using Aspose.Slides
Aspose.Slides for Java
is a Java API for creating, editing, converting, and merging presentation content. You can place images into a Presentation and save the combined slide as a PDF file.
Merge image to PDF in Java
Using
Aspose.Slides for Java
, you can merge images and create a PDF result with a few lines of Java code.
Java code for merging image to PDF
Presentation presentation = new Presentation();
try {
ISlide slide = presentation.getSlides().get_Item(0);
byte[] firstImageData = Files.readAllBytes(Paths.get("image1.png"));
IPPImage firstImage = presentation.getImages().addImage(firstImageData);
slide.getShapes().addPictureFrame(ShapeType.Rectangle, 0, 0, 100, 100, firstImage);
byte[] secondImageData = Files.readAllBytes(Paths.get("image2.png"));
IPPImage secondImage = presentation.getImages().addImage(secondImageData);
slide.getShapes().addPictureFrame(ShapeType.Rectangle, 0, 200, 100, 100, secondImage);
presentation.save("merged.pdf", SaveFormat.Pdf);
} finally {
presentation.dispose();
}
How to merge images in Java
Install Aspose.Slides for Java .
Add the library as a reference in your project.
Create a
Presentationinstance.Load the source images with
Files.readAllBytesandPaths.get.Save the presentation with
SaveFormat.Pdf.
Merge other files
You can also combine files in other formats to get a single file.