ios – 从照片中提取GPS数据

前端之家收集整理的这篇文章主要介绍了ios – 从照片中提取GPS数据前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我很难,因为我想从照片中提取GPS坐标.我使用函数imagePickerController:didFinishPickingMediaWithInfo来选择一个图像,我使用新的Photos框架将该图像插入到collectionView中.
我想从照片中提取GPS坐标.我做了一些研究,我知道UI Image不包含所有元数据,所以我尝试使用AssetsLibrary框架.
在didFinishPickingMediaWithInfo中我使用以下代码提取照片位置:
var referenceURL : NSURL = info.objectForKey(UIImagePickerControllerReferenceURL) as NSURL
    var library : ALAssetsLibrary = ALAssetsLibrary()
    library.assetForURL(referenceURL,resultBlock: { (asset : ALAsset!) -> Void in
        var rep : ALAssetRepresentation = asset.defaultRepresentation()
        var Metadata : NSDictionary = rep.Metadata()


        let location: AnyObject! = asset.valueForProperty(ALAssetPropertyLocation)
        if location != nil {
            println(location)
        }
        else
        {
            println("Location not found")
        }


         })
    {
            (error : NSError!) -> Void in
    }

但是,它找不到位置,即使我检查了图像并且它包含EXIF元数据(它还包含我感兴趣的GPS位置).如何从照片中检索坐标?

解决方法

在iOS 10中不推荐使用ALAssetsLibrary.幸运的是,使用Photos框架,这很容易实现.当调用imagePickerController(_ picker:,didFinishPickingMediaWithInfo)时,您可以通过简单的查找来检索位置信息.看看下面的代码
func imagePickerController(_ picker: UIImagePickerController,didFinishPickingMediaWithInfo info: [String : Any]) {
   if let URL = info[UIImagePickerControllerReferenceURL] as? URL {
       let opts = PHFetchOptions()
       opts.fetchLimit = 1
       let assets = PHAsset.fetchAssets(withALAssetURLs: [URL],options: opts)
       let asset = assets[0]
       // The location is "asset.location",as a CLLocation 

// ... Other stuff like dismiss omitted
}

希望这可以帮助.这是Swift 3,当然..

原文链接:https://www.f2er.com/iOS/330906.html

猜你在找的iOS相关文章