1

我有创建动画 gif 的功能,它总是工作得很好,但是现在当我所有的 gif 都是黑白的时,它会给出 OutOfMemory Exception On :

e.AddFrame(Image.FromFile(imageFilePaths[i]));

我的功能:

public void MakeGif(string sourcefolder, string destinationgif)
    {
        IsGifing = true;
        string path = MainForm.RootDirectory;
        String[] imageFilePaths = Directory.GetFiles(path);
        String outputFilePath = MainForm.RootDirectory + @"\Final.gif";
        AnimatedGifEncoder e = new AnimatedGifEncoder();
        e.Start(outputFilePath);
        e.SetDelay(300);
        //-1:no repeat,0:always repeat

        e.SetRepeat(0);
        for (int i = 0, count = imageFilePaths.Length; i < count; i++)
            e.AddFrame(Image.FromFile(imageFilePaths[i]));
        e.Finish();
        IsGifing = false;
    }

加框功能:

public bool AddFrame(Image im) 
    {
        if ((im == null) || !started) 
        {
            return false;
        }
        bool ok = true;
        try 
        {
            if (!sizeSet) 
            {
                // use first frame's size
                SetSize(im.Width, im.Height);
            }
            image = im;
            GetImagePixels(); // convert to correct format if necessary
            AnalyzePixels(); // build color table & map pixels
            if (firstFrame) 
            {
                WriteLSD(); // logical screen descriptior
                WritePalette(); // global color table
                if (repeat >= 0) 
                {
                    // use NS app extension to indicate reps
                    WriteNetscapeExt();
                }
            }
            WriteGraphicCtrlExt(); // write graphic control extension
            WriteImageDesc(); // image descriptor
            if (!firstFrame) 
            {
                WritePalette(); // local color table
            }
            WritePixels(); // encode and write pixel data
            firstFrame = false;
        } 
        catch (IOException e) 
        {
            ok = false;
        }

        return ok;
    }
4

2 回答 2

3

Image.FromFile的文档说,OutOfMemoryException如果文件不包含有效的图像,或者图像是 GDI+ 不支持的格式,它将抛出。

如果您将代码重写为:

for (int i = 0, count = imageFilePaths.Length; i < count; i++)
{
    var img = Image.FromFile(imageFilePaths[i]);
    e.AddFrame(img);
}

如果您在调用 时遇到异常Image.FromFile,那是因为您的图像无法加载。

于 2011-05-27T19:32:24.273 回答
0

我不知道细节,但这看起来不像写的。没有“使用”,因此您可能没有处理资源。

于 2011-05-27T19:18:40.890 回答