尝试保存Bmp图像时,GDI +错误中发生一般错误

时间:2014-07-10 13:34:35

标签: vb.net

我在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);
    }

0 个答案:

没有答案