Sometimes I use some Freeimage functions in my OF project.
With 0062 I use
FIBITMAP * bmp = getBmpFromPixels(pix);
FIBITMAP * convertedBmp = NULL;
convertedBmp = //the Freeimage function using bmp
putBmpIntoPixels(convertedBmp, pix);
but with 007 I get errors (unknow identifier). getBmpFromPixels and putBmpIntoPixels are not in the header of ofImage.
Is there a way to use this functions ?
or is there a better way to cast ofPixels to FIBITMAP with an ofPixels or ofImage function?