Link

How to Read Image Metadata in JDeli

How to read Metadata from an image file in JDeli

JDeli makes it very simple to access supported Metadata values

Metadata imgMetadata = JDeli.getImageInfo(imgFile);

which can be cast to an Image specific version

HeicMetadata imgMetadata = (HeicMetadata) JDeli.getImageInfo(heicFile);

JDeli Viewer

You can easily find the Metadata in the JDeli Viewer as seen below. viewer

By default, all images will have a value set for image width and image height.

List of Image Specific Metadata in JDeli

  1. BMP
  2. HEIC
    1. IFDData
  3. JPEG
  4. JPEG2000
  5. PDF
  6. PNG
  7. TIFF
    1. IFDData
  8. WEBP

BMP

No additional options are currently available for this format.


HEIC

IFDData

This can be accessed using HeicMetadata.getExif().

Accepted Values
null or an instance of Exif which provides access to IFD MetaData


JPEG

No additional options are currently available for this format.


JPEG2000

No additional options are currently available for this format.


PDF

No additional options are currently available for this format.


PNG

No additional options are currently available for this format.


TIFF

IFDData

This can be accessed using TiffMetadata.getIfds().

Accepted Values
List of IFD data.


WEBP

No additional options are currently available for this format.