1

我一直在绘制设备上下文,现在我希望能够将设备上下文的内容保存到图像中。如果直接从位图保存不是最好的方法,那么我怎样才能从设备上下文中获取位图?我正在尝试在 C# 中执行此操作。

编辑:感谢 SeriesOne,我能够修改他的代码以将 DC 保存到 BMP 中。这是我如何改变它:

  Rectangle bmpRect = new Rectangle(0, 0, 640, 480);
                   // Create a bitmap
                   using (Bitmap bmp = new Bitmap(bmpRect.Width, bmpRect.Height))
                   {
                       Graphics gfx = Graphics.FromHdc(hdcScreen);
                       bmp.Save("C:\\MyBitmap.bmp", System.Drawing.Imaging.ImageFormat.Bmp);
                       gfx.Dispose();
                   }
4

1 回答 1

0
// Set the size/location of your bitmap rectangle.    
Rectangle bmpRect = new Rectangle(0, 0, 640, 480);
    // Create a bitmap
    using (Bitmap bmp = new Bitmap(bmpRect.Width, bmpRect.Height))
    {
        // Create a graphics context to draw to your bitmap.
        using (Graphics gfx = Graphics.FromImage(bmp))
        {
            //Do some cool drawing stuff here
            gfx.DrawEllipse(Pens.Red, bmpRect);
        }

        //and save it!
        bmp.Save(Environment.GetFolderPath(Environment.SpecialFolder.Desktop) + "\\MyBitmap.bmp", System.Drawing.Imaging.ImageFormat.Bmp);
    }

如果您想将位图保存为文件,这很有效。这使用 GDI+(主要是软件渲染),因此性能不是什么大问题,因为您正在渲染到静态文件。

您还可以在渲染控件时使用它来创建屏幕外图形缓冲区。在这种情况下,您只需删除保存语句,并将位图内容写入控制设备上下文。

于 2013-09-11T16:25:03.900 回答