Convert PNG to PDF
The JDeli Java image conversion library comes with PNG support makes it very easy to convert PNG to PDF image files in Java and other languages/scripts.
To run the code examples you will need to download the JDeli jar:
How to convert PNG into PDF in Java
- Read PNG image into Java
BufferedImage bufferedImage = JDeli.read(new File("pngImageFile.png"));
- Process image if needed (scale, sharpen, lighten, watermark, etc)
bufferedImage = operations.apply(BufferedImage bufferedImage); // Optional
- Write out BufferedImage as PDF image file
JDeli.write(bufferedImage, "pdf", new File("pdfImageFile.pdf"));
Export PNG to PDF in one line of code
The JDeli.convert()
methods allow you to save PNG as PDF in just ONE line of code!
Using File
JDeli.convert(File inFile, File outFile);
Using InputStream and OutputStream
JDeli.convert(InputStream inputStream, OutputStream outputStream, "pdf");
Using byte[]
byte[] outputData = JDeli.convert(byte[] inputData, "pdf");
Configure Output Settings
This option allows you to specify an EncoderOptions object to configure output settings such as image compression.
JDeli.convert(File inFile, EncoderOptions outputOptions, File outfile);
Batch convert PNG to PDF from command line
Convert images from command line or bash, bat, and powershell scripts. This method can also be used to invoke JDeli from any programming language that allows you to create a child process.
java -jar jdeli.jar --convert pdf "inputFileOrDir" "outputDir"