15

我正在尝试从 JPG 中提取 BitmapImage。这是我的代码:

FileStream fIn = new FileStream(sourceFileName, FileMode.Open); // source JPG
Bitmap dImg = new Bitmap(fIn);
MemoryStream ms = new MemoryStream();
dImg.Save(ms, ImageFormat.Jpeg);
image = new BitmapImage();
image.BeginInit();
image.StreamSource = new MemoryStream(ms.ToArray());
image.EndInit();
ms.Close();

image 以 0 × 0 的图像返回,这当然意味着它不起作用。我该怎么做呢?

4

1 回答 1

26

试试这个:

public void Load(string fileName) 
{

    using(Stream BitmapStream = System.IO.File.Open(fileName,System.IO.FileMode.Open ))
    {
         Image img = Image.FromStream(BitmapStream);

         mBitmap=new Bitmap(img);
         //...do whatever
    }
}

或者你可以这样做(来源):

Bitmap myBmp = Bitmap.FromFile("path here");
于 2012-04-26T09:03:27.907 回答