Merge TIFF to PDF in Java
Use Aspose.Slides for Java to merge TIFF content in Java applications.
Merge TIFF to PDF using Aspose.Slides
Aspose.Slides for Java
is a Java API for creating, editing, converting, and merging presentation content. You can place TIFF content into a Presentation and save the combined slide as a PDF file.
Merge TIFF to PDF in Java
Using
Aspose.Slides for Java
, you can merge TIFF content and create a PDF result with a few lines of Java code.
Java code for merging TIFF to PDF
Presentation presentation = new Presentation();
try {
ISlide slide = presentation.getSlides().get_Item(0);
byte[] firstImageData = Files.readAllBytes(Paths.get("image1.tif"));
IPPImage firstImage = presentation.getImages().addImage(firstImageData);
slide.getShapes().addPictureFrame(ShapeType.Rectangle, 0, 0, 100, 100, firstImage);
byte[] secondImageData = Files.readAllBytes(Paths.get("image2.tif"));
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 TIFF to PDF in Java
Install Aspose.Slides for Java .
Add the library as a reference in your project.
Create a
Presentationinstance.Load the source
TIFFfiles withFiles.readAllBytesandPaths.get.Save the presentation with
SaveFormat.Pdf.
Merge Files Online
Merge presentations and slides online.
Merge other files
You can also combine files in other formats to get a single file.