Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Access metadata (exif tags) of image taken by UIImagePickerController - iOS/iPhone
How to get image metadata in ios

I have some image file in the iOS application local folder. How can i get it's metadata?

share|improve this question

marked as duplicate by Martin R, sergio, 0x7fffffff, Rob, Graviton Feb 4 at 4:04

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 2 down vote accepted

You can use the ImageIO Framework like explained in QA1654:

To access the image properties you:

  1. create a CGImageSourceRef for your image.
  2. get a copy of the image properties dictionary by calling CGImageSourceCopyPropertiesAtIndex.
  3. access the values in the dictionary by calling CFDictionaryGetValue with the property key that you are interested in. The available keys are located in the CGImageProperties Reference.
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.