我正在使用以下法规,将图像来源纳入主流:
BitmapImage Art3 = new BitmapImage();
using (FileStream stream = File.OpenRead("c:\temp\Album.jpg"))
{
Art3.BeginInit();
Art3.StreamSource = stream;
Art3.EndInit();
}
artwork.Source = Art3;
“艺术作品”是XAML的物体,其图像应显示在其中。 该法典不应打上形象,而是锁定它,而没有显示它,而缺省的形象则成为“无”。 我的猜测是,我没有适当利用这一流,我的形象已经消失。 帮助?
最新资料:
我现在使用朋友向我建议的以下法典:
BitmapImage Art3 = new BitmapImage();
FileStream f = File.OpenRead("c:\temp\Album.jpg");
MemoryStream ms = new MemoryStream();
f.CopyTo(ms);
f.Close();
Art3.BeginInit();
Art3.StreamSource = ms;
Art3.EndInit();
artwork.Source = Art3;
由于某些奇怪的原因,该法典有以下错误:
图像无法编码。 形象头盔可能腐败。
我做了什么错误? 我相信,我试图装满的图像并非腐败。