I'm having trouble loading Jpeg 2000 images using the library in C++.
From what I can tell it needs the plugin, but I can't find any docs on how to load or use it.
Here is my code:
Code: Select all
GFLC_LIBRARY::initialise();
GFLC_LOAD_PARAMS load_option;
GFLC_BITMAP bitmap;
GFLC_FILE_INFORMATION info;
GFL_ERROR error;
GFLC_COLOR color;
error = bitmap.loadFromFile( "R:\\Picture.j2c", load_option, info );
if ( !error )
{
int width, height;
width = info.getWidth();
height = info.getHeight();
}
GFLC_LIBRARY::exit();
Could someone please point me in the right direction?
Thanks so much,
Steve Q.
