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.

How to read DICOM Image files in Java

50 sec read

DICOM icon

In this post, I will be showing you how to read DICOM image files in Java.

ImageIO does not support DICOM file types by default so you will need to use an ImageIO plugin or an external library. I will demonstrate using an Open source ImageIO plugin called TwelveMonkeys (which extends ImageIO to provide DICOM reading support), and using the JDeli Image Library.

First an introduction to Dicom images…

What is DICOM?

DICOM stands for Digital Imaging and Communications in Medicine. DICOM is a standard for medical images. It sets out how to store, exchange and transmit them. You can read more about DICOM images in our article What is a Dicom image.

The filename extension for DICOM files is: .dcm

How to read a DICOM image in Java with ImageIO

Step 1 Download dcm4che plugin and install it.
Step 2 Create a File handle, InputStream or URL pointing to the raw DICOM image.
Step 3 ImageIO will now be able to read a DICOM file into a BufferedImage. This syntax is like so:

BufferedImage image = ImageIO.read(dicomFileOrInputStreamOrURL)

How to read a DICOM image in Java with JDeli

Step 1 Add JDeli to your class or module path. (download the trial jar).
Step 2 Create a File handle, InputStream pointing to the raw DICOM image. You can also use a byte[] containing the image data.
Step 3 Read the DICOM image into a BufferedImage

BufferedImage image = JDeli.read(dicomFile);


Start reading and writing images with one line of code

Read: BufferedImage image = JDeli.read(streamOrFile);

Write: JDeli.write(myBufferedImage, OutputFormat.HEIC, outputStreamOrFile)

Learn more >>

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.

2 Replies to “How to read DICOM Image files in Java”

Comments are closed.