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;
}
Kanasz Robert
Architect
The Staffing Edge & Marwin Cassovia Soft
Slovakia
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