1

Does anyone know how to extract the date a jpeg image was taken/create from the jpeg meta data using imageio?

Karthik Ramachandran
  • 11,925
  • 10
  • 45
  • 53
  • 2
    Have you looked into using the javax.imageio.metadata package? Please look here: http://stackoverflow.com/questions/3909317/creating-a-jpeg-file-with-metadata – Hovercraft Full Of Eels Jan 16 '11 at 01:43

2 Answers2

1

This package should help you extract the metadata you need. http://www.drewnoakes.com/drewnoakes.com/code/exif/

0

You should consider Java Advanced Imaging API.

Java doc here
PDF with examples here

Cœur
  • 37,241
  • 25
  • 195
  • 267