I am writing Windows Phone 8.1 app (WINRT)
I am picking a photo from gallery using FileOpenPicker and then in ContinueFileOpenPicker, how to convert it into Base64??
public void ContinueFileOpenPicker(FileOpenPickerContinuationEventArgs args)
{
var FileOpenPickerContinuationEventArgs_File = args.Files.FirstOrDefault();
//Convert to URI
//Convert to Image
//Convert to Base64
}