如何在urp中将bitmapimge保存到wp8.1中的位图对象?

时间:2014-11-07 07:43:26

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

我想从[URL : https://www.example.com/folders/file.jpg][1]保存我的图片 在BitmapImage的对象

我尝试了以下:

BitmapImage b = new BitmapImage();
b.SetSource(new Uri("https:www.example.com/folders/file.jpg", UriKind.RelativeOrAbsolute));

但它不起作用。为什么呢?

1 个答案:

答案 0 :(得分:1)

此代码测试并为我工作:     Image MyImage = new Image();

        // Create source.
        BitmapImage bImage = new BitmapImage();
        bImage.UriSource = new Uri(@"https:www.example.com/folders/file.jpg", UriKind.RelativeOrAbsolute);

        // Set the image source.
        MyImage.Source = bImage;

告诉我是否适合您或需要更多信息。祝你好运!