C# 怎么将GDI+绘制图形里的内容保存为图片?绘制的图形是由GraphicsPath结构组成的一个圆。求解~
Image _img = null; Bitmap myImage = null; myImage = new Bitmap(iWidth, iHeight); Graphics gl = Graphics.FromImage(myImage); _img = myImage; _img.Save(file, System.Drawing.Imaging.ImageFormat.Jpeg);