Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I i have a very simple C# Form with a thread that get's an image and saves it into a folder. In the ** line I get a Generic GDI+ Error, I believe that it's a multithreading issue.
This is the code of the thread:

    int seqId = SeqId;
    int num = 0;
    while (true)
    {
         string directoryPath = @"C:\tests\sequencias\seq-" + seqId + "\\";

            if (!Directory.Exists(directoryPath))
            {
                Directory.CreateDirectory(directoryPath);

            }
            SRSLibraryCommon.Image img = GetImage();
            **img.InternalImage.Save(directoryPath + "img" + num + ".jpg");


            this.Invoke(new VoidDlg(delegate
            {
                this.pictureBox1.Image = (Bitmap)img.InternalImage.Clone();
            }));
            num++;
        }
    }

` Thanks. Marcos

share|improve this question
I've solved, it was an error on the GetImageMethod. I closed the MemoryStream used to read the image. – Marcos Perez Jun 17 '10 at 22:50
2  
You should post the answer and then mark it as "The Answer" – Muad'Dib Aug 11 '10 at 23:07

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.