Click here to Skip to main content
16,011,815 members
Articles / Mobile Apps
Article

NGif, Animated GIF Encoder for .NET

Rate me:
Please Sign up or sign in to vote.
4.02/5 (58 votes)
1 Sep 2005CPOL 1.5M   18.1K   117   123
Create animated GIF images using C#.

Sample Image - NGif.gif

Introduction

Because .NET Framework can't create animated GIF images, NGif provides a way to create GIF animations in the .NET framework. It can create an animated GIF from several images and extract images from an animated GIF.

Using the code

C#
/* create Gif */
//you should replace filepath
String [] imageFilePaths = new String[]{"c:\\01.png","c:\\02.png","c:\\03.png"}; 
String outputFilePath = "c:\\test.gif";
AnimatedGifEncoder e = new AnimatedGifEncoder();
e.Start( outputFilePath );
e.SetDelay(500);
//-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();
/* extract Gif */
string outputPath = "c:\\";
GifDecoder gifDecoder = new GifDecoder();
gifDecoder.Read( "c:\\test.gif" );
for ( int i = 0, count = gifDecoder.GetFrameCount(); i < count; i++ ) 
{
 Image frame = gifDecoder.GetFrame( i ); // frame i
 frame.Save( outputPath + Guid.NewGuid().ToString() 
                       + ".png", ImageFormat.Png );
}

Points of Interest

Use Stream to replace BinaryWriter when you write a fixed-byte structured binary file.

History

  • 31 Aug 2005: Draft.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
China China
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRe: Transparency Not Working Pin
Equinox SE30 Jota26-Oct-11 15:24
Equinox SE30 Jota26-Oct-11 15:24 
GeneralRe: Transparency Not Working Pin
Chase Viking4-Jun-13 5:01
Chase Viking4-Jun-13 5:01 
GeneralRe: Transparency Not Working Pin
Member 946120618-Sep-13 0:25
Member 946120618-Sep-13 0:25 
GeneralBug? Net CF Pin
Hoar Wu31-May-07 15:55
Hoar Wu31-May-07 15:55 
GeneralRe: Bug? Net CF Pin
chuanchu13-Aug-07 15:12
chuanchu13-Aug-07 15:12 
GeneralRe: Bug? Net CF Pin
nixkuroi7-Jun-14 14:44
nixkuroi7-Jun-14 14:44 
QuestionHas anybody been able to optimize this code? Pin
SubodhShakya23-Apr-07 20:50
SubodhShakya23-Apr-07 20:50 
AnswerRe: Has anybody been able to optimize this code? Pin
Ephoy9-May-07 1:29
Ephoy9-May-07 1:29 
I have been able to optimize the GifDecoder quiet a bit, but at the expense of compatability. The realy slow code which runs a lot (realy A LOT) of times is the GetPixel() and SetPixel() functions. I have rewritten the code to avoid the use of those, but this have to be done in "usafe" context. This means that you have to compile with the compiler option "unsafe", and that the executable will only run on the processor type you compiled it on (afair). You can just replace the two functions below in the GifDecoder.cs file.
Here is the code for the GetPixels function
int [] GetPixels( Bitmap bitmap )
{
	int [] pixels = new int [ 3 * image.Width * image.Height ];
	int count = 0;
    int tw, th;

    BitmapData data = bitmap.LockBits(new Rectangle(0, 0, bitmap.Width, bitmap.Height), ImageLockMode.ReadWrite, bitmap.PixelFormat);
    int scanwidth = data.Stride;
    System.IntPtr Scan = data.Scan0;
    int width = bitmap.Width;
    int height = bitmap.Height;

    unsafe
    {
        int offset; // excess pixels at each row, to counter word alignment
        if (bitmap.PixelFormat == PixelFormat.Format32bppArgb ||
            bitmap.PixelFormat == PixelFormat.Format32bppPArgb ||
            bitmap.PixelFormat == PixelFormat.Format32bppRgb)
        {
            offset = scanwidth - bitmap.Width * 4;
        }
        else // assume 24 bits per pixel
            offset = scanwidth - bitmap.Width * 3; 
        int x, y;
        byte colr, colg, colb;
        byte* p = (byte*)(void*)Scan;
        for (y = 0; y < height; y++)
        {
            for (x = 0; x < width; x++)
            {
                pixels[count++] = (int)*(p++);
                pixels[count++] = (int)*(p++);
                pixels[count++] = (int)*(p++);
            }
            p += offset;
        }
    } // End of unsafe
    bitmap.UnlockBits(data);
	return pixels;
}

Here is the code for the SetPixels function
void SetPixels( int [] pixels )
{
	int count = 0;

    BitmapData data = bitmap.LockBits(new Rectangle(0, 0, bitmap.Width, bitmap.Height),
        ImageLockMode.ReadWrite, bitmap.PixelFormat);
    int scanwidth = data.Stride;
    System.IntPtr Scan = data.Scan0;
    int width = image.Width;
    int height = image.Height;
    unsafe
    {
        bool fourBytePerPixel = false;
        int offset; // excess pixels at each row, to counter word alignment
        if (bitmap.PixelFormat == PixelFormat.Format32bppArgb ||
            bitmap.PixelFormat == PixelFormat.Format32bppPArgb ||
            bitmap.PixelFormat == PixelFormat.Format32bppRgb)
        {
            offset = scanwidth - bitmap.Width * 4;
            fourBytePerPixel = true;
        }
        else // assume 24 bits per pixel
            offset = scanwidth - bitmap.Width * 3;
        int x, y;
        byte* p = (byte*)(void*)Scan;
        Int32 pixeldata;
        for (y = 0; y < height; y++)
        {
            for (x = 0; x < width; x++)
            {
                pixeldata = pixels[count++];

                *(p++) = (byte)(pixeldata);
                *(p++) = (byte)(pixeldata >> 8);
                *(p++) = (byte)(pixeldata >> 16);
                if (fourBytePerPixel)
                    *(p++) = (byte)(pixeldata >> 24);
            }
            p += offset;
        }
    } // End of unsafe
    bitmap.UnlockBits(data);
}


You must have me excused if the code is a bit cluttered, but it should be usefull anyway. Actually I have not gone into details to see whether it is necessary to test for 24 or 32 bit images, as the code might use purly 32 bit images.

- Lothver

GeneralRe: Has anybody been able to optimize this code? Pin
User 4886924-Sep-07 3:32
User 4886924-Sep-07 3:32 
QuestionRe: Has anybody been able to optimize this code? Pin
Ephoy14-Oct-07 7:22
Ephoy14-Oct-07 7:22 
AnswerRe: Has anybody been able to optimize this code? Pin
User 4886914-Oct-07 23:04
User 4886914-Oct-07 23:04 
GeneralRe: Has anybody been able to optimize this code? Pin
TODarkone18-Nov-07 9:15
TODarkone18-Nov-07 9:15 
QuestionPlay a gif in a Form? Pin
anderslundsgard22-Mar-07 21:41
anderslundsgard22-Mar-07 21:41 
AnswerRe: Play a gif in a Form? Pin
yuxuetaoxp8-Jan-08 3:21
yuxuetaoxp8-Jan-08 3:21 
GeneralLZW Patent No. 4,558,302 Pin
Eric P Schneider9-Mar-07 17:53
Eric P Schneider9-Mar-07 17:53 
GeneralRe: LZW Patent No. 4,558,302 Pin
Vlasta_20-Mar-07 1:59
Vlasta_20-Mar-07 1:59 
GeneralRe: LZW Patent No. 4,558,302 Pin
Mons00n22-Mar-07 10:14
Mons00n22-Mar-07 10:14 
GeneralBtw, this is awesome Pin
dB.19-Feb-07 12:12
dB.19-Feb-07 12:12 
GeneralBug: loopcount should be initialized at -1 Pin
dB.19-Feb-07 11:36
dB.19-Feb-07 11:36 
GeneralResizing an animated GIF Pin
dB.19-Feb-07 11:32
dB.19-Feb-07 11:32 
GeneralAccess to the path "c:\test.gif" is denied. Pin
saikatchoudhury20-Dec-06 20:43
saikatchoudhury20-Dec-06 20:43 
QuestionRelease as open source project? PinPopular
jongalloway16-Aug-06 11:33
jongalloway16-Aug-06 11:33 
General[Message Deleted] Pin
Damian Wood2-Jul-06 3:35
Damian Wood2-Jul-06 3:35 
GeneralRe: Solution for last 2 pixels of a frame being white Pin
BenBearChen24-Aug-06 18:10
BenBearChen24-Aug-06 18:10 
GeneralAnother Solution ! be tested! Pin
tianlupan224-Aug-06 21:31
tianlupan224-Aug-06 21:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.