Zach
Zach

Reputation: 10129

Read EXIF data of an Image in Blackberry

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

Answers (1)

esaj
esaj

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

Related Questions