Reputation: 61
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
Upvotes: 3
Views: 7512
Reputation: 2932
you can use metadata-extractor like ..
Metadata metadata = ImageMetadataReader.readMetadata(imageFile);
Upvotes: 4
Reputation: 4179
Try Apache Tika. It's very mature and well-suported metadata extraction libraty.
Upvotes: 2