如何在Windows Phone 8.1中下载图像

时间:2015-02-14 11:13:10

标签: c# windows-phone windows-phone-8.1 windows-8.1

我正在创建一个应用程序,显示来自url的图像,将propper Uri设置为Image.Source

我想添加下载图片功能,以便用户将图片下载到他的设备

如何将图像下载到本地存储(以及我应该使用的文件夹是什么?)

谢谢

2 个答案:

答案 0 :(得分:2)

您可以使用此代码:

string localFilename = @"c:\localpath\tofile.jpg";
using(WebClient client = new WebClient())
{
    client.DownloadFile("http://www.example.com/image.jpg", localFilename);
}

更多信息:Download image from the site in .NET/C#

答案 1 :(得分:1)

使用RestSharp库提供了一种处理图像的结构化方法

private void GetImage()
{
    RestClient _Client = new RestClient(BASE_URI);
    RestRequest request = new RestRequest("/api/img/{FileName}");
    request.AddParameter("FileName", "dummy.jpg", ParameterType.UrlSegment);
    _Client.ExecuteAsync(
    request,
    Response =>
    {
        if (Response != null)
        {
            byte[] imageBytes = Response.RawBytes;
            var bitmapImage = new BitmapImage();
            bitmapImage.BeginInit();
            bitmapImage.StreamSource = new MemoryStream(imageBytes);
            bitmapImage.CreateOptions = BitmapCreateOptions.None;
            bitmapImage.CacheOption = BitmapCacheOption.Default;
            bitmapImage.EndInit();

            JpegBitmapEncoder encoder = new JpegBitmapEncoder();
            Guid photoID = System.Guid.NewGuid();
            String photolocation = String.Format(@"c:\temp\{0}.jpg", Guid.NewGuid().ToString());
            encoder.Frames.Add(BitmapFrame.Create(bitmapImage));
            using (var filestream = new FileStream(photolocation, FileMode.Create))
            encoder.Save(filestream);

            this.Dispatcher.Invoke((Action)(() => { img.Source = bitmapImage; }));
            ;
        }
    });
}

另一种简单的方法是将任务交给powershell。将您的图片Url作为参数传递给脚本。 (此处未显示)

Invoke-WebRequest -Uri ('http://XXX/image.php?roll=123) -OutFile ('img.jpeg') -Verbose