如何将 WinForm 窗口捕获为不带插入符号的位图

发布于 2024-08-28 01:02:20 字数 1174 浏览 5 评论 0原文

我在 WinForm 上有一个窗口,我想获取其位图表示形式。 为此,我使用以下代码(其中 codeEditor 是我想要其位图表示形式的控件):

    public Bitmap GetBitmap( )
    {
        IntPtr srcDC = NativeMethods.GetDC( codeEditor.Handle ) ;
        var bitmap = new Bitmap( codeEditor.Width, codeEditor.Height ) ;

        Graphics graphics = Graphics.FromImage( bitmap ) ;

        var deviceContext = graphics.GetHdc( ) ;
        bool blitted = NativeMethods.BitBlt(
            deviceContext,
            0,
            0,
            bitmap.Width,
            bitmap.Height,
            srcDC,
            0,
            0,
            0x00CC0020 /*SRCCOPY*/ ) ;
        if ( !blitted )
        {
            throw new InvalidOperationException(
                @"The bitmap could not be generated." ) ;
        }

        int result = NativeMethods.ReleaseDC( codeEditor.Handle, srcDC ) ;
        if ( result == 0 )
        {
            throw new InvalidOperationException( @"Cannot release bitmap resources." ) ;
        }

        graphics.ReleaseHdc( deviceContext ) ;
        graphics.Dispose( ) ;

问题是,如果插入符号在捕获时在窗口中闪烁,则会捕获它。我尝试在捕获之前调用Win32方法HideCaret,但似乎没有任何效果。

I've got window on a WinForm that I want to get the bitmap representation of.
For this, I use the following code (where codeEditor is the control I want a bitmap representation of):

    public Bitmap GetBitmap( )
    {
        IntPtr srcDC = NativeMethods.GetDC( codeEditor.Handle ) ;
        var bitmap = new Bitmap( codeEditor.Width, codeEditor.Height ) ;

        Graphics graphics = Graphics.FromImage( bitmap ) ;

        var deviceContext = graphics.GetHdc( ) ;
        bool blitted = NativeMethods.BitBlt(
            deviceContext,
            0,
            0,
            bitmap.Width,
            bitmap.Height,
            srcDC,
            0,
            0,
            0x00CC0020 /*SRCCOPY*/ ) ;
        if ( !blitted )
        {
            throw new InvalidOperationException(
                @"The bitmap could not be generated." ) ;
        }

        int result = NativeMethods.ReleaseDC( codeEditor.Handle, srcDC ) ;
        if ( result == 0 )
        {
            throw new InvalidOperationException( @"Cannot release bitmap resources." ) ;
        }

        graphics.ReleaseHdc( deviceContext ) ;
        graphics.Dispose( ) ;

The trouble is, this captures the caret if it's flashing in the window at the time of capture. I tried calling the Win32 method HideCaret before capturing, but it didn't seem to have any effect.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

孤檠 2024-09-04 01:02:20

好吧,一种方法是将焦点设置到表单的其他一些控件 - 并可能稍后将焦点恢复到文本字段。

Well, one way is to set a focus to some other control of a form - and possibly restore the focus to a text field later on.

云淡月浅 2024-09-04 01:02:20

当你这样做时会发生什么?

public Bitmap GetBitmap()
{
    Bitmap bmp = new Bitmap(codeEditor.Width, codeEditor.Height);
    Rectangle rect = new Rectangle(0, 0, codeEditor.Width, codeEditor.Height);
    codeEditor.DrawToBitmap(bmp, rect);
    return bmp;
}

What happens when you just do this?

public Bitmap GetBitmap()
{
    Bitmap bmp = new Bitmap(codeEditor.Width, codeEditor.Height);
    Rectangle rect = new Rectangle(0, 0, codeEditor.Width, codeEditor.Height);
    codeEditor.DrawToBitmap(bmp, rect);
    return bmp;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文