I read how to save a Graphics object to disk from the web and this is the method I came up with, however, it saves a black image with no picture at all!! What am I doing wrong?
G is a graphics object. R is a rectangle.
C#:
G.DrawImage((Image)Ims[tick], R);
//System.Drawing.Drawing2D.GraphicsState GS= G.Save();
Bitmap B=new Bitmap(R.Width, R.Height, G);
B.Save("D:\\Pic.bmp", System.Drawing.Imaging.ImageFormat.Bmp);