我选择了一张带有 PhotoChooserTask 的图片,我想从这张图片中获取元数据(经度、纬度、设备等)。我怎样才能做到这一点 ?
我的代码:
void photochoosertask_Completed(object sender, PhotoResult e)
{
BitmapImage bmp = new BitmapImage();
bmp.SetSource(e.ChosenPhoto);
im.Source = bmp;
//get metadatas ?
}