I am trying to copy the contents of a graphic into a bitmap. I am using this code
public static class GraphicsBitmapConverter { [DllImport("gdi32.dll", SetLastError = true)] [return: MarshalAs(UnmanagedType.Bool)] private static extern bool BitBlt(IntPtr hdc, int nXDest, int nYDest, int nWidth, int nHeight, IntPtr hdcSrc, int nXSrc, int nYSrc, TernaryRasterOperations dwRop); public static Bitmap GraphicsToBitmap(Graphics g, Rectangle bounds) { Bitmap bmp = new Bitmap(bounds.Width, bounds.Height); using (Graphics bmpGrf = Graphics.FromImage(bmp)) { IntPtr hdc1 = g.GetHdc(); IntPtr hdc2 = bmpGrf.GetHdc(); BitBlt(hdc2, 0, 0, bmp.Width, bmp.Height, hdc1, 0, 0, TernaryRasterOperations.SRCCOPY); g.ReleaseHdc(hdc1); bmpGrf.ReleaseHdc(hdc2); } return bmp; } }
If I use a type method
Graphics g = button1.CreateGraphics(); var bmp = GraphicsBitmapConverter.GraphicsToBitmap(g, Rectangle.Truncate(g.VisibleClipBounds));
bitmap contains content. But if I draw a graphic object before calling the methods, the bitmap is empty:
using (Bitmap bmp = new Bitmap(100, 100)) { using (Graphics g = Graphics.FromImage(bmp)) { g.FillRectangle(Brushes.Red, 10, 10, 50, 50); g.FillRectangle(Brushes.Blue, 20, 20, 50, 50); g.FillRectangle(Brushes.Green, 0, 0, bmp.Width, bmp.Height); var bmp2 = GraphicsBitmapConverter.GraphicsToBitmap(g, Rectangle.Truncate(g.VisibleClipBounds)); } }
Why does it work in the first case, and not in the last?