In my application , I need to download the image from particular URL Link and assign that to UIImageView
. I do not store that image to my Library, then in this case how can I get the Exif data of this image (like EXIF_TAG_CREATE_DATE
, EXIF_TAG_ARTIST
, etc) in my app?
相关问题
- CALayer - backgroundColor flipped?
- Core Data lightweight migration crashes after App
- Core Data lightweight migration crashes after App
- How can I implement password recovery in an iPhone
- State preservation and restoration strategies with
相关文章
- 现在使用swift开发ios应用好还是swift?
- UITableView dragging distance with UIRefreshContro
- Could I create “Call” button in HTML 5 IPhone appl
- TCC __TCCAccessRequest_block_invoke
- Where does a host app handle NSExtensionContext#co
- xcode 4 garbage collection removed?
- Unable to process app at this time due to a genera
- Swift - hide pickerView after value selected
Accessing image properties, such as image height and width, DPI, EXIF data, etc., via ImageIO
( source: http://developer.apple.com/library/ios/#qa/qa1654/_index.html )
( source: http://blog.depicus.com/index.php/2011/05/07/getting-exif-data-from-images-on-ios/ )
Accessing EXIF properties via the open source (but outdated) iphone-exif library
( source: http://code.google.com/p/iphone-exif/ )