使用Image Control WPF

时间:2011-03-12 13:45:49

标签: c# wpf wpf-controls stream bitmap

您好我一直在寻找在列表框内的图像控件中显示图像的解决方案。我已经看到设置图像源并为其分配new BitmapImage(new Uri(stringX))

在我的情况下,我首先使用函数中的WebClient从URL检索所有图像,并且该函数在某个过程后返回MemoryStream

现在我要做的是显示该图像,所以我没有Uri来创建新的位图。所以我试图实现StreamSource但我得到了

  Set property 'System.Windows.Media.Imaging.BitmapImage.StreamSource' threw an exception.

这里是我的代码

从网上检索图片

public MemoryStream GetImage(string id)
        {
            WebResponse result = null;
            Image rImage = null;
            MemoryStream imageStream = null;
            try
            {
                string url = "https://devnmark.com/" + id + "/picture";
                WebRequest request = WebRequest.Create(url);
                result = request.GetResponse();
                Stream stream = result.GetResponseStream();
                BinaryReader br = new BinaryReader(stream);
                byte[] rBytes = br.ReadBytes(1000000);
                br.Close();
                result.Close();
                imageStream = new MemoryStream(rBytes, 0, rBytes.Length);
                imageStream.Write(rBytes, 0, rBytes.Length);
                rImage = Image.FromStream(imageStream, true);
               // imageStream.Close();
            }
            catch (Exception c)
            {
                //MessageBox.Show(c.Message);
            }
            finally
            {
                if (result != null) result.Close();
            }
            return imageStream;

        }

为类型

声明的类
 class UserInfo
    {
        public int Id { get; set; }
        public string Name { get; set; }
        public bool IsChecked { get; set; }
        public MemoryStream Picture { get; set; }
    }

加载图片

 private void LoadFriends()
        {
            foreach (dynamic imge in MainList)
            {
                if (x >= 6)
                    break;
                UserInfo info = new UserInfo();
                info.Id = int.Parse(imge.id);
                info.Name = imge.name;         
                info.Picture = function.GetImage(info.Id.ToString());
                FriendList.Add(info);
                x++;
            }
            list.ItemsSource = FriendList;
        }

列表框的XMAL

<ListBox x:Name="list"  Margin="18,100,535,74" >
    <ListBox.ItemTemplate>
       <HierarchicalDataTemplate>
          <StackPanel Orientation="Horizontal">
             <Image Height="50" Width="50">
                 <Image.Source>                                    
                   <BitmapImage StreamSource="Picture" ></BitmapImage>
                 </Image.Source>
             </Image>
             <my:RibbonCheckBox Label="{Binding Name}" IsChecked="{Binding IsChecked}" />                    
          </StackPanel>                     
      </HierarchicalDataTemplate>      
    </ListBox.ItemTemplate>                 
</ListBox>

2 个答案:

答案 0 :(得分:2)

你有很多问题。

byte[] rBytes = br.ReadBytes(1000000);

如果图像大于1MB怎么办?

删除行

rImage = Image.FromStream(imageStream, true);

你没有使用那个结果,它只需要处理时间并将imageStream放在最后。

您应该使用MemoryStream.Seek()在返回之前将流重置为起始位置。

imageStream.Seek(0, SeekOrigin.Begin);

修改

您的XAML绑定错误

<BitmapImage StreamSource="Picture" ></BitmapImage>

应该是

<BitmapImage StreamSource="{Binding Picture}" ></BitmapImage>

是一个有效的绑定,但我实际上不确定你是否可以绑定StreamSource或者你是否需要从代码初始化,就像在{{3}的最底层的例子中一样}。

答案 1 :(得分:0)

据我所知,该网站似乎需要某种身份验证。 你提供了吗? 你能给我们一个工作网址吗?