iPhone - access location information from a photo(iPhone - 从照片中获取位置信息)
问题描述
是否有可能在 iPhone 应用程序中从使用 iPhone 相机拍摄的照片中提取位置信息(我想是地理编码)?
Is it possible, in an iPhone app, to extract location information (geocode, I suppose it's called) from a photo taken with the iPhone camera?
如果没有 API 调用来执行此操作,是否有任何已知的方法来解析数据字节以提取信息?我可以自己滚动的东西?
If there is no API call to do it, is there any known way to parse the bytes of data to extract the information? Something I can roll on my own?
推荐答案
很遗憾没有.
问题是这样的;
一个 jpeg 文件由几个部分组成.对于这个问题,我们感兴趣的是图像数据和 exif 数据.图像数据是图片,exif 数据是存储地理编码、快门速度、相机类型等信息的地方.
A jpeg file consists of several parts. For this question the ones we are interested in are the image data and the exif data. The image data is the picture and the exif data are where things like geocoding, shutter speed, camera type and so on are stored.
一个 UIImage(和 CGImage)只包含图像数据,没有标签.
A UIImage (and CGImage) only contain image data, no tags.
当图像选择器选择图像(从库或相机中)时,它会返回 UIImage,而不是 jpeg.这个 UIImage 是从 jpeg 图像数据创建的,但是 jpeg 中的 exif 数据被丢弃了.
When the image picker selects an image (either from the library or the camera) it returns a UIImage, not a jpeg. This UIImage is created from the jpeg image data, but the exif data in the jpeg is discarded.
这意味着这些数据根本不在 UIImage 中,因此无法访问.
This means this data is not in the UIImage at all and thus is not accessible.
这篇关于iPhone - 从照片中获取位置信息的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:iPhone - 从照片中获取位置信息
基础教程推荐
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01