If you're in control of the creation of the Graphics object then you can do
something like this.
Bitmap b = new Bitmap(100, 100);
Graphics g = Graphics.FromImage(b);
// Draw on the image using g.DrawEllipse(...), g.DrawLine(...), etc.
b.Save(...);
g.Dispose();
b.Dispose();

Signature
Tim Wilson
.NET Compact Framework MVP
> How do I save or transform a System.Drawing.Graphics object into an Image
> object ?
[quoted text clipped - 4 lines]
> _____
> Marco