Xamarin iOS 相机和照片

Xamarin iOS camera and photos

我正在用 iOS 相机拍照并尝试从图像中提取元数据。这是我的代码:-

partial void BtnCamera_TouchUpInside(UIButton sender)
        {
            UIImagePickerController imagePicker = new UIImagePickerController();
            imagePicker.PrefersStatusBarHidden();
            imagePicker.SourceType = UIImagePickerControllerSourceType.Camera;

            // handle saving picture and extracting meta-data from picture //
            imagePicker.FinishedPickingMedia += Handle_FinishedPickingMedia;

            // present //
            PresentViewController(imagePicker, true, () => { });         
        }


protected void Handle_FinishedPickingMedia(object sender, UIImagePickerMediaPickedEventArgs e)
        {
            try
            {
                // determine what was selected, video or image
                bool isImage = false;
                switch (e.Info[UIImagePickerController.MediaType].ToString())
                {
                    case "public.image":
                        isImage = true;
                        break;
                }

                // get common info 
                NSUrl referenceURL = e.Info[new NSString("UIImagePickerControllerReferenceURL")] as NSUrl;
                if (referenceURL != null)
                    Console.WriteLine("Url:" + referenceURL.ToString());

我可以启动相机,拍照,然后当我点击 'use photo' 时...referenceURL 返回为 NULL...我怎样才能得到 url,这样就可以提取照片的 GPS 坐标和其他属性?

您可以从引用 Url 请求 PHAsset,其中将包含一些元数据。您可以请求图片数据获取更多。

注意:如果您需要完整的EXIF,您需要检查以确保设备上的图像(可以是iCloud-based),如果需要下载它,然后使用[=加载图像数据12=] 框架(很多 SO 帖子都涵盖了这个)。

public void ImagePicker_FinishedPickingMedia(object sender, UIImagePickerMediaPickedEventArgs e)
{
    void ImageData(PHAsset asset)
    {
        if (asset == null) throw new Exception("PHAsset is null");
        PHImageManager.DefaultManager.RequestImageData(asset, null, (data, dataUti, orientation, info) =>
        {
            Console.WriteLine(data);
            Console.WriteLine(info);
        });
    }

    PHAsset phAsset;
    if (e.ReferenceUrl == null)
    {
        e.OriginalImage?.SaveToPhotosAlbum((image, error) =>
        {
            if (error == null)
            {
                var options = new PHFetchOptions
                {
                    FetchLimit = 1,
                    SortDescriptors = new[] { new NSSortDescriptor("creationDate", true) }
                };
                phAsset = PHAsset.FetchAssets(options).FirstOrDefault() as PHAsset;
                ImageData(phAsset);
            }
        });
    }
    else
    {
        phAsset = PHAsset.FetchAssets(new[] { e.ReferenceUrl }, null).FirstOrDefault() as PHAsset;
        ImageData(phAsset);
    }
}

注意:确保您已请求运行时照片库授权 PHPhotoLibrary.RequestAuthorization) 并将 info.plist 中的 Privacy - Photo Library Usage Description 字符串设置为避免严重的隐私崩溃

我在 URL 上遇到了很多麻烦。它可以是一个文件,也可以是一个网络 url,并且它在每个设备上的行为都不同。我的应用程序在我的测试组中多次崩溃和烧毁。我终于找到了一种从数据中获取元数据的方法。有多种方法可以获取 DateTaken、宽度和高度以及 GPS 坐标。另外,我需要Camera MFG和Model。

string dateTaken = string.Empty;
string lat = string.Empty;
string lon = string.Empty;
string width = string.Empty;
string height = string.Empty;
string mfg = string.Empty;
string model = string.Empty;

PHImageManager.DefaultManager.RequestImageData(asset, options, (data, dataUti, orientation, info) => {

    dateTaken = asset.CreationDate.ToString();

    // GPS Coordinates
    var coord = asset.Location?.Coordinate;
    if (coord != null)
    {
        lat = asset.Location?.Coordinate.Latitude.ToString();
        lon = asset.Location?.Coordinate.Longitude.ToString();
    }

    UIImage img = UIImage.LoadFromData(data);
    if (img.CGImage != null)
    {
        width = img.CGImage?.Width.ToString();
        height = img.CGImage?.Height.ToString();
    }
    using (CGImageSource imageSource = CGImageSource.FromData(data, null))
    {
        if (imageSource != null)
        {
            var ns = new NSDictionary();
            var imageProperties = imageSource.CopyProperties(ns, 0);
            if (imageProperties != null)
            {
                width = ReturnStringIfNull(imageProperties[CGImageProperties.PixelWidth]);
                height = ReturnStringIfNull(imageProperties[CGImageProperties.PixelHeight]);

                var tiff = imageProperties.ObjectForKey(CGImageProperties.TIFFDictionary) as NSDictionary;
                if (tiff != null)
                {
                    mfg = ReturnStringIfNull(tiff[CGImageProperties.TIFFMake]);
                    model = ReturnStringIfNull(tiff[CGImageProperties.TIFFModel]);
                    //dateTaken = ReturnStringIfNull(tiff[CGImageProperties.TIFFDateTime]);
                }
            }
        }
    }
}

}

小帮手功能

private string ReturnStringIfNull(NSObject inObj)
{
    if (inObj == null) return String.Empty;
    return inObj.ToString();
}