Link

Convert PNG to HEIC

JDeli makes it very easy to convert PNG to HEIC image files in Java and other languages/scripts.

To run the code examples you will need either:

Free trial jar

Full Customer jar

How to convert PNG into HEIC in Java

  1. Read PNG image into Java
    BufferedImage bufferedImage = JDeli.read(new File("pngImageFile.png"));  
    
  2. Process image if needed (scale, sharpen, lighten, watermark, etc)
    bufferedImage = operations.apply(BufferedImage bufferedImage); // Optional
    
  3. Write out BufferedImage as HEIC image file
    JDeli.write(bufferedImage, "heic", new File("heicImageFile.heic"));
    

View Javadoc

Export PNG to HEIC in one line of code

The JDeli.convert() methods allow you to save PNG as HEIC in just ONE line of code!

Using File

JDeli.convert(File inFile, File outFile);

Using InputStream and OutputStream

JDeli.convert(InputStream inputStream, OutputStream outputStream, "heic");

Using byte[]

byte[] outputData = JDeli.convert(byte[] inputData, "heic");

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 HEIC 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 heic "inputFileOrDir" "outputDir"