WPF的等效函数是什么?
本文关键字:是什么 函数 WPF | 更新日期: 2023-09-27 17:54:37
我有以下功能,在Windows窗体中工作,但我需要帮助,使其在WPF与图像控制工作。
public static Bitmap CreateBitmap(byte[] bytes, int width, int height)
{
var rgbBytes = new byte[bytes.Length * 3];
for (var i = 0; i <= bytes.Length - 1; i++)
{
rgbBytes[(i * 3)] = bytes[i];
rgbBytes[(i * 3) + 1] = bytes[i];
rgbBytes[(i * 3) + 2] = bytes[i];
}
var bmp = new Bitmap(width, height, PixelFormat.Format24bppRgb);
var data = bmp.LockBits(new Rectangle(0, 0, bmp.Width, bmp.Height), ImageLockMode.WriteOnly, PixelFormat.Format24bppRgb);
for (var i = 0; i <= bmp.Height - 1; i++)
{
var p = new IntPtr(data.Scan0.ToInt32() + data.Stride * i);
System.Runtime.InteropServices.Marshal.Copy(rgbBytes, i * bmp.Width * 3, p, bmp.Width * 3);
}
bmp.UnlockBits(data);
return bmp;
}
任何帮助将不胜感激。由于
试试这样:
BitmapSource bs = System.Windows.Interop.Imaging.CreateBitmapSourceFromHBitmap(
bmp.GetHbitmap(),
IntPtr.Zero,
System.Windows.Int32Rect.Empty,
BitmapSizeOptions.FromWidthAndHeight(bmp.Width, bmp.Height));
image.Source = bs;
image
是一个Image控件。
另外,请检查这个问题,因为它提到了一些关于bmp.GetHbitmap()
泄漏句柄的重要事实。
最后,这篇文章可能会有所帮助。