Click here to Skip to main content
15,881,803 members
Articles / Programming Languages / C#
Article

C# Wrapper to the FreeImage DLL for graphical image format conversion

Rate me:
Please Sign up or sign in to vote.
4.67/5 (10 votes)
30 Sep 2003 287.3K   4.6K   42   49
This article provides a simplified C# wrapper to the FreeImage project for graphical file format conversion.

Introduction

FreeImage is an extremely useful Open Source project for reading, manipulating and converting a large amount of graphical formats. However at present the library exists as Win32 Dynamic Link Library. As my latest fascination is C#, I decided to create a simple Interop wrapper for it.

Using the code

The code is very straightforward to use, which is a reflection on the FreeImage implementation itself. For my needs I wanted to be able to take a picture file in Portable Bitmap (PBM) format and convert it to a standard Bitmap (BMP). For this I needed 3 methods exposed via the FreeImage DLL, FreeImage_Load, FreeImage_Save and FreeImage_Unload, the signature for which are:

C#
DLL_API FIBITMAP *DLL_CALLCONV FreeImage_Load(FREE_IMAGE_FORMAT fif, 
       const char *filename, int flags FI_DEFAULT(0));
 
DLL_API BOOL DLL_CALLCONV FreeImage_Save(FREE_IMAGE_FORMAT fif, 
   FIBITMAP *dib, const char *filename, int flags FI_DEFAULT(0)); 
 
DLL_API void DLL_CALLCONV FreeImage_Unload(FIBITMAP* dib);

Now the C# Interop signatures for these are:

C#
public class FreeImage
{
     [DllImport("FreeImage.dll")]
     public static extern int FreeImage_Load(FIF format,
                    string filename, int flags);

     [DllImport("FreeImage.dll")]
     public static extern void FreeImage_Unload(int handle);

     [DllImport("FreeImage.dll")]
     public static extern bool FreeImage_Save(FIF format,
        int handle, string filename, int flags);
}

As an example, to convert a graphical image from PBM to BMP, all you need to do is the following (note the enum FIF is not documented here, but can be found in the source code).

C#
namespace Test
{
    class MainClass
    {
        public static void Main(string[] args)
        {
            int handle = FreeImageAPI.FreeImage.FreeImage_Load(
                FreeImageAPI.FIF.FIF_PBM,
                @"c:\image.pbm", 
                0);
                          
            FreeImageAPI.FreeImage.FreeImage_Save(
                FreeImageAPI.FIF.FIF_BMP,   
                handle, 
                @"c:\image.bmp", 
                0);
 
            FreeImageAPI.FreeImage.FreeImage_Unload(handle);          
        }
    }
}

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


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

Comments and Discussions

 
GeneralI cant create FreeImage.dll Pin
leoni51026-Jun-05 8:19
leoni51026-Jun-05 8:19 
GeneralRe: I cant create FreeImage.dll Pin
ianhfar30-Jun-05 6:01
ianhfar30-Jun-05 6:01 
GeneralRe: I cant create FreeImage.dll Pin
Dave Simon17-Jun-21 10:12
Dave Simon17-Jun-21 10:12 
GeneralUnable to find an entry point (FreeImage_CloseMultiBitmap) Pin
john_b12321-Jun-05 0:58
john_b12321-Jun-05 0:58 
GeneralRe: Unable to find an entry point (FreeImage_CloseMultiBitmap) Pin
asd00713-Mar-06 0:53
asd00713-Mar-06 0:53 
GeneralRe: Unable to find an entry point (FreeImage_CloseMultiBitmap) Pin
asd00713-Mar-06 0:53
asd00713-Mar-06 0:53 
AnswerRe: Unable to find an entry point (FreeImage_CloseMultiBitmap) Pin
vor0nwe26-Apr-06 5:30
vor0nwe26-Apr-06 5:30 
GeneralDDS and Freeimage Pin
cococvg27-Apr-05 0:23
cococvg27-Apr-05 0:23 
GeneralUnable to load DLL (FreeImage.dll). Pin
TechTiger24-Mar-04 14:00
TechTiger24-Mar-04 14:00 
GeneralRe: Unable to load DLL (FreeImage.dll). Pin
David Boland24-Mar-04 23:55
David Boland24-Mar-04 23:55 
GeneralDisplaying in .NET Pin
furkinfedup26-Oct-03 1:37
furkinfedup26-Oct-03 1:37 
GeneralRe: Displaying in .NET Pin
Andreas Schoeneck10-Nov-03 11:22
Andreas Schoeneck10-Nov-03 11:22 
GeneralRe: Displaying in .NET Pin
David Boland10-Nov-03 22:58
David Boland10-Nov-03 22:58 
GeneralRe: Displaying in .NET Pin
Drolon17-Nov-03 7:15
Drolon17-Nov-03 7:15 
GeneralRe: Displaying in .NET Pin
furkinfedup23-Jan-04 23:26
furkinfedup23-Jan-04 23:26 
GeneralRe: Displaying in .NET Pin
persée23-Aug-05 4:41
persée23-Aug-05 4:41 
GeneralMemory or File... Pin
Drew Stainton1-Oct-03 7:46
Drew Stainton1-Oct-03 7:46 
GeneralRe: Memory or File... Pin
Anonymous1-Oct-03 22:38
Anonymous1-Oct-03 22:38 
QuestionHow to draw FIBITMAP to form. Pin
Skyer1-Oct-03 4:30
Skyer1-Oct-03 4:30 
AnswerRe: How to draw FIBITMAP to form. Pin
David Boland1-Oct-03 5:09
David Boland1-Oct-03 5:09 
GeneralAccessing the image Pin
Ray Hayes1-Oct-03 1:36
Ray Hayes1-Oct-03 1:36 
GeneralRe: Accessing the image Pin
David Boland1-Oct-03 5:20
David Boland1-Oct-03 5:20 
GeneralSystem::Drawing::Image Pin
Jonathan de Halleux1-Oct-03 1:36
Jonathan de Halleux1-Oct-03 1:36 
GeneralRe: System::Drawing::Image Pin
David Boland1-Oct-03 5:15
David Boland1-Oct-03 5:15 

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.