I want to read properties like created_date, modified_date, creator, etc... in Java, of the below image file formats:
- GIF file
- JPEG
- TIFF
- CDR
I have used javax.imageio but I didn't find the solution. Any help would be appreciated
I want to read properties like created_date, modified_date, creator, etc... in Java, of the below image file formats:
I have used javax.imageio but I didn't find the solution. Any help would be appreciated
you can use metadata-extractor like ..
Metadata metadata = ImageMetadataReader.readMetadata(imageFile);
Try Apache Tika. It's very mature and well-suported metadata extraction libraty.