写真を撮っている Windows Phone 8 アプリケーションがあります。オブジェクトから Base64 文字列を取得したいのですが、そのe.ChosenPhoto
方法がわかりません。
コード:
private void cameraCaptureTask_Completed(object sender, PhotoResult e)
{
if (e.TaskResult == TaskResult.OK)
{
var bmp = new BitmapImage();
bmp.SetSource(e.ChosenPhoto);
imgPhoto.Source = bmp;
imgPhoto.Stretch = Stretch.Uniform;
// Get the base64 String from the e.ChosenPhoto or the bmp object
}
}