C#加载JPG文件,提取BitmapImage

前端之家收集整理的这篇文章主要介绍了C#加载JPG文件,提取BitmapImage前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图从JPG中提取Bitmap Image.这是我的代码
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();

图像带有0×0图像,这当然意味着它不起作用.我该怎么做?

解决方法

尝试这个:
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
    }
}

或者你可以这样做(source):

Bitmap myBmp = Bitmap.FromFile("path here");
原文链接:https://www.f2er.com/csharp/91994.html

猜你在找的C#相关文章