简体   繁体   English

如何解决此错误“ GDI +中发生一般错误”?

[英]How to Fix this Error “A generic error occurred in GDI+”?

Open An Image from default name and save it by default name.(overwrit it) 从默认名称打开图像并保存为默认名称。(将其覆盖)

I need make graphics from Image("Default.jpg") that put it on picturebox1.image and draw some graphic on picurebox1.(it works and it is not my problem) But I can't save picturebox1.Image overwrite on "Default.jpg"(this is My problem).If I change the save name it work but I need to overwrite it and open it manytimes. 我需要从Image(“ Default.jpg”)制作图形并将其放在picturebox1.image上,并在picurebox1上绘制一些图形。(它可以工作,这不是我的问题),但是我无法保存picturebox1.Image在“ Default”上覆盖.jpg”(这是我的问题)。如果更改保存名称,它可以工作,但是我需要覆盖它并多次打开它。 Thank You 谢谢

    Boolean Play = false;
    Pen P = new Pen(Color.Black, 2);
    Graphics Temp;
    int X1, X2, Y1, Y2;
    Image Default_Image = new Bitmap("Default.jpg");
    public Form1()
    {
        InitializeComponent();
        Temp = pictureBox1.CreateGraphics();
    }
    private void PictureBox1_MouseDown(object sender, MouseEventArgs e)
    {
        if (Play)
        {
            X2 = e.X;
            Y2 = e.Y; ;
            Temp.DrawLine(P, X1, Y1, X2, Y2);
            pictureBox1.Image.Save("Default.jpg");
            Play = false;
        }
        else
        {
            Default_Image = new Bitmap("Default.jpg");
            Temp = Graphics.FromImage(Default_Image);
            pictureBox1.Image =Default_Image;
            X1 = e.X;
            Y1 = e.Y;
            Play = true;
        }
    }

{"A generic error occurred in GDI+."} {“ GDI +中发生一般错误。”}

To overwrite an image you need to make sure no connections remain to it. 覆盖图像,您需要确保没有剩余的连接。 Closing , Disposing or Cloning are not quite enough... ClosingDisposingCloning还不够...

Here is a function that creates a truly independent copy: 这是一个创建真正独立副本的函数:

Bitmap GetClone(string imageName)
{
    if (!File.Exists(imageName)) return null;
    Bitmap bmp2 = null;
    using (Bitmap bmp = (Bitmap)Bitmap.FromFile(imageName))
    {
        bmp2 = new Bitmap(bmp.Width, bmp.Height, bmp.PixelFormat);
        bmp2.SetResolution(bmp.HorizontalResolution, bmp.VerticalResolution);
        using (Graphics g = Graphics.FromImage(bmp2))
        {
            g.DrawImage(bmp, 0, 0);
        }
    }
    return bmp2;
}

Now you can do this: 现在您可以执行以下操作:

string file = yourImageFileName;
Bitmap bmp = GetClone(file);
using (Graphics g = Graphics.FromImage(bmp))
{
    // draw what you want..
    g.DrawRectangle(Pens.Red, 11, 11, 199, 199);
}
bmp.Save(file, ImageFormat.Png);  // use your own format etc..

You should also take care to not leak old PictureBox.Image versions.. Here is a helper function: 您还应该注意不要泄漏旧的PictureBox.Image版本。这是一个辅助函数:

void SetPBoxImage(PictureBox pbox, Bitmap bmp)
{
    Bitmap dummy = (Bitmap)pbox.Image;
    pbox.Image = null;
    if (dummy != null) dummy.Dispose();
    pbox.Image = bmp;
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM