C#加载JPG文件,提取位图图像
本文关键字:提取 位图 图像 文件 加载 JPG | 更新日期: 2023-09-27 18:32:14
我正在尝试从JPG中提取位图图像。这是我的代码:
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
}
}
或者你可以这样做(来源):
Bitmap myBmp = Bitmap.FromFile("path here");