5
File Pickerで選択したファイルのbase64文字列が必要です。MetroがStorageFileのbase64文字列を取得する
//file is a StorageFile
FileRandomAccessStream stream = (FileRandomAccessStream)await file.OpenAsync(FileAccessMode.ReadWrite);
using (MemoryStream ms = new MemoryStream())
{
Stream ss1 = stream.AsStream(); ;
s1.CopyTo(ms);
}
byteArray = ms.ToArray();
string imageStringSixtyfour = Convert.ToBase64String(byteArray);
if (imageStringSixtyfour != null)
return imageStringSixtyfour;
返される文字列は常に空です。ほとんどの例では、オンライン
感謝を試してみてくださいW8プラットフォームの一部ではないクラスであります –