[WPF][BitmapImage] 從Stream中建立物件

  • 2594
  • 0

摘要:[WPF][BitmapImage] 從Stream中建立物件

在Form下的System.Drawing.Bitmap很簡易使用,因為有個建構式Bitmap(Stream)

而在WPF下的BitmapImage建構式中沒有此方法,具體要使用串流建立的代碼為

            using (MemoryStream ms = new MemoryStream(data))
            {

                BitmapImage bmp = new BitmapImage();
                bmp.BeginInit();
                bmp.StreamSource = ms;
                bmp.EndInit();

            }