Mark Stephens Mark has been working with Java and PDF since 1999 and is a big NetBeans fan. He enjoys speaking at conferences. He has an MA in Medieval History and a passion for reading.

How to read Heic files in Java with JDeli

42 sec read

HEIC

How to read Heic files in Java?

In this article, I will explain how to read HEIC files into Java as a BufferedImage. We also have a related article covering how to write HEIC files in Java.

ImageIO does not read HEIC file types so you will need to use an external library. In this article we will cover using our JDeli library to read Heic files in Java.

If you are looking for a free solution, we recommend the Nokia library on GitHub (which includes Java wrappers).

How to read Heic files in Java with JDeli:

  1. Add JDeli to Your Project: Add JDeli to your class or module path. (download the trial jar ).
  2. Point to Your Heic Picture: Create a file handle, input Stream pointing to the raw Heic image. Alternatively, you can also use a byte[] containing the image data if your data is in that format.
  3. Read Heic pictures easily: Use JDeli to read the Heic image into a BufferedImage.
    BufferedImage image = JDeli.read(heicFile);
    

Still struggling with how to read Heic files in Java?

You can contact us on Discord, Zoom or Email if you would like to find out more about how JDeli can help.



Why do developers choose JDeli over free alternatives?

  1. Works with newer image formats such as AVIF, HEIC, JPEG XL, WEBP (AVIF next release) that are not supported in Java.
  2. Better support than alternatives for JPEG, PNG, TIFF.
  3. Process images up to 3x faster than ImageIO and other Java image libraries.
  4. Prevent JVM crashes caused by native code in other image libraries such as ImageIO.
  5. Image security as JDeli processes images on your servers with no calls to any external system or third party library.

Are you a Java Developer working with Image files?

Mark Stephens Mark has been working with Java and PDF since 1999 and is a big NetBeans fan. He enjoys speaking at conferences. He has an MA in Medieval History and a passion for reading.