我有一个名为picture
的图片框
我想获取此图片框的图像并将其保存为bitmapsource
BitmapSource myPic;
myPic = picture.Image;
但是我收到了这个错误:
严重级代码描述项目文件行抑制状态 错误CS0029无法隐式转换类型' System.Drawing.Image' to' System.Windows.Media.Imaging.BitmapSource'
答案 0 :(得分:1)
您需要将System.Drawing.Image转换为System.Drawing.Bitmap,然后将其转换为BitmapSource。
您可以选择以下解决方案之一: fast converting Bitmap to BitmapSource wpf
答案 1 :(得分:1)
使用此方法:
public BitmapSource ImageToBitmapSource(System.Drawing.Image image)
{
var bitmap = new System.Drawing.Bitmap(image);
var bitSrc =BitmapToBitmapSource(bitmap);
bitmap.Dispose();
bitmap = null;
return bitSrc;
}
public BitmapSource BitmapToBitmapSource(System.Drawing.Bitmap source)
{
BitmapSource bitSrc = null;
var hBitmap = source.GetHbitmap();
try
{
bitSrc = System.Windows.Interop.Imaging.CreateBitmapSourceFromHBitmap(
hBitmap,
IntPtr.Zero,
Int32Rect.Empty,
BitmapSizeOptions.FromEmptyOptions());
}
catch (Win32Exception)
{
bitSrc = null;
}
return bitSrc;
}