If you are trying to create a graphic object from the surface of your form, you can use this.CreateGraphics
If you are trying to create a new image, you can always initialize Image and then call Graphics.CreateGraphics.FromImage(YourImage) for example.
Bitmap b = new Bitmap(100,100); var g = Graphics.CreateGraphics.FromImage(b);
At this point, any drawing made for your Graphics object will be drawn on your image.
George Johnston
source share