Page 1 of 1

Jpeg 2000 and Plugins

Posted: Sun Aug 03, 2014 3:44 am
by steveq
Hi Gurus!

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(); 

The error code is 6 - Unknown Format.

Could someone please point me in the right direction?

Thanks so much,

Steve Q. :-)