CodeProject: NGif, Animated GIF Encoder for .NET

優點:影像品質佳
缺點:速度較慢
Photobucket
Gif.Components.AnimatedGifEncoder e = new Gif.Components.AnimatedGifEncoder();
e.Start(@"c:\test.gif");
e.SetDelay(500);
//-1:no repeat,0:always repeat
e.SetRepeat(0);
for (int i = 0 ; i < 12; i++ )
{
    e.AddFrame( Image.FromFile( string.Format(@"F:\Downloads\map({0}).png", i) ) );
} // for
e.Finish();

HOWTO: create an animated GIF using .Net (C#) - Rick van den Bosch - Blog
優點:速度快,檔案小
缺點:影像品質較差,Microsoft GIF Animator及Adobe ImageReady CS2判定格式錯誤無法開啟(但IE和FF正常)。
Photobucket

 

其它資料: