Windowsストアアプリの画像コントロールからStorageFileに画像を保存するにはどうすればよいですか?私は次のリンクを使用していますが、それは私には役に立ちません
StorageFile file = await StorageFile.CreateStreamedFileFromUriAsync(" ", new Uri(user.ProfilePicUrl), new RandomAccessStream());
問題の明確な解決策が必要です。これどうやってするの?
Windowsストアアプリの画像コントロールからStorageFileに画像を保存するにはどうすればよいですか?私は次のリンクを使用していますが、それは私には役に立ちません
StorageFile file = await StorageFile.CreateStreamedFileFromUriAsync(" ", new Uri(user.ProfilePicUrl), new RandomAccessStream());
問題の明確な解決策が必要です。これどうやってするの?
次の方法を使用して、URLから次のファイルに画像を保存できますLocalFolder
。
public async Task<string> DownloadFileAsync(Uri uri, string filename)
{
using (var fileStream = await ApplicationData.Current.LocalFolder.OpenStreamForWriteAsync(filename, CreationCollisionOption.ReplaceExisting))
{
var webStream = await new HttpClient().GetStreamAsync(uri);
await webStream.CopyToAsync(fileStream);
webStream.Dispose();
}
return (await ApplicationData.Current.LocalFolder.GetFileAsync(filename)).Path;
}