0

如何将图像从 Windows 商店应用程序中的图像控件存储到 StorageFile?我正在使用以下链接,但这对我没有用

StorageFile file = await StorageFile.CreateStreamedFileFromUriAsync(" ", new Uri(user.ProfilePicUrl), new RandomAccessStream());

http://msdn.microsoft.com/en-us/library/windows/apps/windows.storage.storagefile.createstreamedfileasync.aspx

我需要明确的解决方案来解决我的问题。我怎样才能做到这一点?

4

1 回答 1

3

您可以使用以下方法将图像从 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;
}
于 2013-02-10T06:05:18.610 回答