Reputation: 185
Does anyone know any class which allows extracting metadata in java from .jpg image? Or maybe some useful code?
Thank you!
Upvotes: 2
Views: 3927
Reputation: 310907
I maintain a library that does exactly this.
https://github.com/drewnoakes/metadata-extractor/
The API is pretty simple:
Metadata metadata = ImageMetadataReader.readMetadata(imagePath);
Upvotes: 1