0

I choose a picture with a PhotoChooserTask and I would like to get metadatas (longitute, latitude, device, ect) from this picture. How can I do that ?

My code:

    void photochoosertask_Completed(object sender, PhotoResult e)
    {
        BitmapImage bmp = new BitmapImage();
        bmp.SetSource(e.ChosenPhoto);
        im.Source = bmp;

        //get metadatas ?
    }
Anthony
  • 2,801
  • 3
  • 30
  • 49

1 Answers1

0

If by chance you happen to be uploading the image to a service that has access to the full .NET Framework, you can also use the BitmapMetadata class - http://msdn.microsoft.com/en-us/library/ms619225.aspx.

Jeff Bramwell
  • 990
  • 8
  • 16