gpt4 book ai didi

wpf - 如何将从 Windows 窗体控件创建的位图捕获到 BitmapSource?

转载 作者:行者123 更新时间:2023-12-02 05:13:35 25 4
gpt4 key购买 nike

我想捕获作为 ActiveX 导入控件的控件的图像,并在 WPF 中显示该图像。我不使用 Windows 窗体主机的原因是它太慢(我想用这些 activex 控件创建一个列表):到目前为止我有:

    public Bitmap CaptureCtrl(Control ctrl)
{
// Ein neues Image mit der grösse des jeweiligen Controls anlegen
Console.WriteLine("new Bitmap({0:d}, {0:d}, g)", ctrl.Size.Width, ctrl.Size.Height);
Bitmap newImage = new Bitmap(ctrl.Size.Width, ctrl.Size.Height);

Graphics memoryGraphics = Graphics.FromImage(newImage);
//Handle holen
var hwnd = ctrl.Handle;
IntPtr src = NativeMethods.GetDC(hwnd);
IntPtr dest = memoryGraphics.GetHdc();

// das Handle des Ziels
// die X Position an der das Bild eingefügt werden soll
// die Y Position an der das Bild eingefügt werden soll
// die breite des Bildes
// die höhe des Bildes
// das Handle der Quelle
// die X Position an der das Control liegt
// die Y Position an der das Control liegt
// Raster Operation Code an dieser Stelle ist es SRCCOPY
// Natürlich muß der auf der Seite angegebene Hex wert noch in ein int umgerechnet werden
// mehr informationen auf http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wceui40/html/_celrfternaryrasteroperations.asp
Console.WriteLine("BitBlt(dest, 0, 0, {0:d}, {1:d}, src, {2:d}, {3:d}, 13369376)", ctrl.ClientRectangle.Width, ctrl.ClientRectangle.Height, ctrl.Location.X, ctrl.Location.Y);
NativeMethods.BitBlt(dest, 0, 0, ctrl.ClientRectangle.Width, ctrl.ClientRectangle.Height, src, ctrl.Location.X, ctrl.Location.Y, 13369376);

// Handles wieder Freigeben
NativeMethods.ReleaseDC(hwnd, src);
memoryGraphics.ReleaseHdc(dest);

return newImage;
}

和:

    /// <summary>
/// Converts a <see cref="System.Drawing.Bitmap"/> into a WPF <see cref="BitmapSource"/>.
/// </summary>
/// <remarks>Uses GDI to do the conversion. Hence the call to the marshalled DeleteObject.
/// </remarks>
/// <param name="source">The source bitmap.</param>
/// <returns>A BitmapSource</returns>
public static System.Windows.Media.Imaging.BitmapSource ToBitmapSource(this System.Drawing.Bitmap source)
{
System.Windows.Media.Imaging.BitmapSource bitSrc = null;

IntPtr hBitmap = source.GetHbitmap();

try
{
bitSrc = System.Windows.Interop.Imaging.CreateBitmapSourceFromHBitmap(
hBitmap,
IntPtr.Zero,
Int32Rect.Empty,
System.Windows.Media.Imaging.BitmapSizeOptions.FromEmptyOptions());
}
catch (Win32Exception we)
{
bitSrc = null;
Console.WriteLine(we.ToString()+ " data: "+we.Data + " code: " + we.ErrorCode);
}
finally
{
NativeMethods.DeleteObject(hBitmap);
}

return bitSrc;
}

和调用代码:

    using (var capture = host.CaptureCtrl(this.control))
{
this.image.Source = capture.ToBitmapSource();
}

NativeMethod 调用是从 dll 导入的,应该很清楚。现在的问题是图片只是灰色的,没有填充内容(看来确实是复制了一些东西)

最佳答案

我找到了问题的解决方案(不一定是当前版本中的错误),对于任何感兴趣的人......

如果用这个替换捕获方法,那么它就像一个魅力:

public Bitmap CaptureCtrl(Control ctrl)
{
// Ein neues Image mit der grösse des jeweiligen Controls anlegen
Bitmap newImage = new Bitmap(ctrl.Size.Width, ctrl.Size.Height);
ctrl.DrawToBitmap(newImage, ctrl.ClientRectangle);
return newImage;
}

关于wpf - 如何将从 Windows 窗体控件创建的位图捕获到 BitmapSource?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3131351/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com