我在Windows窗体中遇到一些问题,我正在尝试保存BMP图像,但它会产生以下异常。 " GDI +中发生了一般错误。
这是我的代码:
public void SaveImage(String file)
{
Bitmap bmp = new Bitmap(Width, Height, System.Drawing.Imaging.PixelFormat.Format32bppArgb);
Graphics g = Graphics.FromImage(bmp);
g.FillRectangle(Brushes.White, 0, 0, Width, Height);
panel1_Paint(null, new PaintEventArgs(g, this.ClientRectangle));
bmp.Save(file);
}