Click here to Skip to main content
Click here to Skip to main content

How to convert BMP to GIF in C#

By , 19 Dec 2010
 
In this post, I will show you how to convert BMP file to GIF in C#. The first step you must do is to create a Bitmap object. In this example, I passed filename to constructor of this object. Next you need to create ImageCodecInfo and choose the appropriate mime type of output format. You can set quality and compression of output image. In case you need to do this, you must create EncoderParameters object which represents list of EncoderParameter objects. This objects represent set of parameters which encoder uses for image encoding.
 
static void Main(string[] args)
{
    Bitmap myBitmap=new Bitmap(@"test.bmp");
    ImageCodecInfo myImageCodecInfo = GetEncoderInfo("image/gif"); ;
    EncoderParameter encCompressionrParameter = new EncoderParameter(System.Drawing.Imaging.Encoder.Compression, (long)EncoderValue.CompressionLZW); ;
    EncoderParameter encQualityParameter = new EncoderParameter(System.Drawing.Imaging.Encoder.Quality, 0L);
    EncoderParameters myEncoderParameters = new EncoderParameters(2);
    myEncoderParameters.Param[0] = encCompressionrParameter;
    myEncoderParameters.Param[1] = encQualityParameter;
    myBitmap.Save("Output.gif", myImageCodecInfo, myEncoderParameters);
}
 
private static ImageCodecInfo GetEncoderInfo(String mimeType)
{
    int j;
    ImageCodecInfo[] encoders;
    encoders = ImageCodecInfo.GetImageEncoders();
    for (j = 0; j < encoders.Length; ++j)
    {
        if (encoders[j].MimeType == mimeType)
            return encoders[j];
    }
    return null;
}

License

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

About the Author

Kanasz Robert
Architect The Staffing Edge & Marwin Cassovia Soft
Slovakia Slovakia
Member
My name is Robert Kanasz and I have been working with ASP.NET, WinForms and C# for several years.
 
MCTS - .NET Framework 3.5, ASP.NET Applications
- SQL Server 2008, Database Development
- SQL Server 2008, Implementation and Maintenance
- .NET Framework 4, Data Access
- .NET Framework 4, Service Communication Applications
- .NET Framework 4, Web Applications
MCPD - ASP.NET Developer 3.5
- Web Developer 4
MCITP - Database Administrator 2008
- Database Developer 2008
 
Open source projects: DBScripter - Library for scripting SQL Server database objects
 

Please, do not forget vote

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralReason for my vote of 5 very nicememberhoolly25 Dec '11 - 22:35 
Reason for my vote of 5
very nice
GeneralGood tip!subeditorWalt Fair, Jr.20 Dec '10 - 12:09 
Good tip!
GeneralReason for my vote of 1 No color mapping...memberlolocmwa8 Dec '10 - 3:48 
Reason for my vote of 1
No color mapping...
GeneralReason for my vote of 3 Quite decent work.memberToli Cuturicu4 Dec '10 - 7:43 
Reason for my vote of 3
Quite decent work.
GeneralReason for my vote of 5 Good onemvpthatraja3 Dec '10 - 1:51 
Reason for my vote of 5
Good one
GeneralReason for my vote of 1 So...memberT-luv1 Dec '10 - 8:27 
Reason for my vote of 1
So...

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130523.1 | Last Updated 19 Dec 2010
Article Copyright 2010 by Kanasz Robert
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid