1#ifndef __JBXL_CPP_JPEG2K_TOOl_H_
2#define __JBXL_CPP_JPEG2K_TOOl_H_
31#ifdef DISABLE_OPENJPEG
39 #define OPENJPEG_VER 12
52 #if OPENJPEG_VER <= JP2K_VER_15
55 #pragma comment(lib, "OpenJPEGd.lib")
57 #pragma comment(lib, "OpenJPEG.lib")
59 #elif OPENJPEG_VER >= JP2K_VER_20
60 #pragma comment(lib, "openjp2.lib")
68#define JP2K_MAGIC_RFC3745_JP2 "\x00\x00\x00\x0c\x6a\x50\x20\x20\x0d\x0a\x87\x0a"
69#define JP2K_MAGIC_JP2 "\x0d\x0a\x87\x0a"
70#define JP2K_MAGIC_J2K "\xff\x4f\xff\x51"
72#define JP2K_FMT_NONE 0
97 JPEG2KImage(
void) { init();}
98 virtual ~JPEG2KImage(
void) {}
102 void clear(
void) { fill(0);}
106 void setup_image(
void);
108 int& point(
int x,
int y,
int c) {
return image->comps->data[c*xs*ys+y*xs+x];}
116JPEG2KImage readJPEG2KFile(
const char* fname);
118#if OPENJPEG_VER <= JP2K_VER_15
119JPEG2KImage readJPEG2KData(
unsigned char* data,
int len,
int format);
120#elif OPENJPEG_VER >= JP2K_VER_21
121JPEG2KImage readJPEG2KData(
const char* fname,
int format);
123JPEG2KImage readJPEG2KData(FILE* fp,
int format);
129int isJPEG2KHeader(
Buffer buf);
130int repairJPEG2KFile(
const char* fname,
const char* writef);
150template <
typename T> MSGraph<T> JPEG2KImage2MSGraph(JPEG2KImage jp)
159 vp.set(jp.ws, jp.hs, jp.col);
160 if (vp.isNull())
return vp;
163 for (
int k=0; k<jp.col; k++) {
164 int ps = k*jp.ws*jp.hs;
165 for (
int j=0; j<jp.hs; j++) {
166 int kk = j*jp.ws + ps;
168 for (
int i=0; i<jp.ws; i++) {
169 vp.gp[kk + i] = (T)(jp.image->comps[k].data[yy + i]);
228// Data Structure reffered from opnejpeg.h
232typedef struct opj_image
234 int x0; // XOsiz: horizontal offset from the origin of the reference grid to the left side of the image area
235 int y0; // YOsiz: vertical offset from the origin of the reference grid to the top side of the image area
236 int x1; // Xsiz: width of the reference grid
237 int y1; // Ysiz: height of the reference grid
238 int numcomps; // number of components in the image
239 OPJ_COLOR_SPACE color_space;// color space: sRGB, Greyscale or YUV
240 opj_image_comp_t *comps; // image components
241 unsigned char *icc_profile_buf; // 'restricted' ICC profile
242 int icc_profile_len; // size of ICC profile
247typedef struct opj_image
249 OPJ_UINT32 x0; // XOsiz: horizontal offset from the origin of the reference grid to the left side of the image area
250 OPJ_UINT32 y0; // YOsiz: vertical offset from the origin of the reference grid to the top side of the image area
251 OPJ_UINT32 x1; // Xsiz: width of the reference grid
252 OPJ_UINT32 y1; // Ysiz: height of the reference grid
253 OPJ_UINT32 numcomps; // number of components in the image
254 OPJ_COLOR_SPACE color_space;// color space: sRGB, Greyscale or YUV
255 opj_image_comp_t *comps; // image components
256 OPJ_BYTE *icc_profile_buf; // 'restricted' ICC profile
257 OPJ_UINT32 icc_profile_len; // size of ICC profile
262typedef struct opj_image_comp
264 int dx; // XRsiz: horizontal separation of a sample of ith component with respect to the reference grid
265 int dy; // YRsiz: vertical separation of a sample of ith component with respect to the reference grid
267 int h; // data height
268 int x0; // x component offset compared to the whole image
269 int y0; // y component offset compared to the whole image
270 int prec; // precision
271 int bpp; // image depth in bits
272 int sgnd; // signed (1) / unsigned (0)
273 int resno_decoded; // number of decoded resolution
274 int factor; // number of division by 2 of the out image compared to the original size of image
275 int *data; // image component data
280typedef struct opj_image_comp
282 OPJ_UINT32 dx; // XRsiz: horizontal separation of a sample of ith component with respect to the reference grid
283 OPJ_UINT32 dy; // YRsiz: vertical separation of a sample of ith component with respect to the reference grid
284 OPJ_UINT32 w; // data width
285 OPJ_UINT32 h; // data height
286 OPJ_UINT32 x0; // x component offset compared to the whole image
287 OPJ_UINT32 y0; // y component offset compared to the whole image
288 OPJ_UINT32 prec; // precision
289 OPJ_UINT32 bpp; // image depth in bits
290 OPJ_UINT32 sgnd; // signed (1) / unsigned (0)
291 OPJ_UINT32 resno_decoded; // number of decoded resolution
292 OPJ_UINT32 factor; // number of division by 2 of the out image compared to the original size of image
293 OPJ_INT32 *data; // image component data
298typedef enum COLOR_SPACE
300 CLRSPC_UNKNOWN = -1, // not supported by the library
301 CLRSPC_UNSPECIFIED = 0, // not specified in the codestream
302 CLRSPC_SRGB = 1, // sRGB
303 CLRSPC_GRAY = 2, // grayscale
304 CLRSPC_SYCC = 3 // YUV
309typedef enum COLOR_SPACE
311 OPJ_CLRSPC_UNKNOWN = -1, // not supported by the library
312 OPJ_CLRSPC_UNSPECIFIED = 0, // not specified in the codestream
313 OPJ_CLRSPC_SRGB = 1, // standard RGB
314 OPJ_CLRSPC_GRAY = 2, // grayscale
315 OPJ_CLRSPC_SYCC = 3, // standard YCC (YUV)
316 OPJ_CLRSPC_EYCC = 4, // enhanced YCC (YUV)
317 OPJ_CLRSPC_CMYK = 5 // CMYK
#define JBXL_GRAPH_NODATA_ERROR
データが無い