Reputation: 10129
How to read EXIF data of an Image in a blackberry device using code. I have used ExifInterface in android. Is there something similar in blackberry. Thanks
Upvotes: 4
Views: 463
Reputation: 16035
I haven't really tried this, but my best guess would be getMetaData() in EncodedImage, which returns a MetaDataControl:
MetaDataControl is used to retrieve metadata information included within the media streams. A MetaDataControl object recognizes and stores metadata and provides XML-like accessor methods to retrieve this information.
Upvotes: 1