In a previous post I looked at why you might want to convert a PDF file to an image (you can use JPedal to do this). This time I will look at doing the opposite and converting an image into a PDF document in Java.
If the image is a multi-page TIFF then JDeli will generate a multi-page PDF file, with as many images as the TIFF contains.
File imageFile = new File("C:\\path\\to\\pdf\\exampleImage.tif");
PdfEncoderOptions options = new PdfEncoderOptions();
File pdfFile = new File("C:\\path\\to\\pdf\\examplePDF.pdf");
//create new PDF or append if PDF already exists
JDeli.convert(imageFile, options, pdfFile);
File pdfFile = new File("C:\\path\\to\\pdf\\examplePDF.pdf");
PdfEncoderOptions options = new PdfEncoderOptions();
//create new PDF or append if PDF already exists
JDeli.write(bufferedImage, options, file);
Some images can be displayed in the browser, and do not require PDF display tools to be viewed. Converting images to PDF files allows the display of Tiff and other non-support image types and makes them easier to handle. PDF files can be altered and extra content can be added to them. Converting an image to a PDF will also reduce the size of the file.
The PDF file format is very complex and we generally recommend using existing tools rather than trying to build your own from scratch (if you really want to try this we have a series of articles on how to do this). We recommend you use a Java library. There are lots of Open Source and Commercial Java libraries available to do this. For this tutorial, I will be using JDeli to do this. JDeli can be used to read and write a large number of image file formats in Java. It can also be used to write an image into a PDF file.
// Read an image BufferedImage bufferedImage = JDeli.read(dicomImageFile);
// Read an image BufferedImage bufferedImage = JDeli.read(heicImageFile); // Write an image JDeli.write(bufferedImage, "heic", outputStreamOrFile);
// Read an image BufferedImage bufferedImage = JDeli.read(jpegImageFile); // Write an image JDeli.write(bufferedImage, "jpeg", outputStreamOrFile);
// Read an image BufferedImage bufferedImage = JDeli.read(jpeg2000ImageFile); // Write an image JDeli.write(bufferedImage, "jpx", outputStreamOrFile);
// Write an image JDeli.write(bufferedImage, "pdf", outputStreamOrFile);
// Read an image BufferedImage bufferedImage = JDeli.read(pngImageFile); // Write an image JDeli.write(bufferedImage, "png", outputStreamOrFile);
// Read an image BufferedImage bufferedImage = JDeli.read(tiffImageFile); // Write an image JDeli.write(bufferedImage, "tiff", outputStreamOrFile);
// Read an image BufferedImage bufferedImage = JDeli.read(webpImageFile); // Write an image JDeli.write(bufferedImage, "webp", outputStreamOrFile);
Bethan Palmer Bethan is a Java developer and a Java Champion. She has spoken at conferences including JavaOne/Code One, DevFest and NetBeans days. She has a degree in English Literature.