JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
Jpeg2KTool.h
Go to the documentation of this file.
1#ifndef __JBXL_CPP_JPEG2K_TOOl_H_
2#define __JBXL_CPP_JPEG2K_TOOl_H_
3
20#include "Gdata.h"
21#include "xtools.h"
22
23/*
24#ifndef HAVE_OPENJPEG_H
25#ifndef DISABLE_OPENJPEG
26#define DISABLE_OPENJPEG
27#endif
28#endif
29*/
30
31#ifdef DISABLE_OPENJPEG
32#undef ENABLE_OPENJPEG
33#endif
34
35
36#ifdef ENABLE_OPENJPEG
37
38#ifndef OPENJPEG_VER
39 #define OPENJPEG_VER 12
40#endif
41
42#define JP2K_VER_12 12
43#define JP2K_VER_14 14
44#define JP2K_VER_15 15
45#define JP2K_VER_20 20
46#define JP2K_VER_21 21
47#define JP2K_VER_25 25
48
49#undef HAVE_STDLIB_H
50
51#ifdef WIN32
52 #if OPENJPEG_VER <= JP2K_VER_15
53 #undef OFF
54 #ifdef _DEBUG
55 #pragma comment(lib, "OpenJPEGd.lib") // DLLを使用
56 #else
57 #pragma comment(lib, "OpenJPEG.lib") // DLLを使用
58 #endif
59 #elif OPENJPEG_VER >= JP2K_VER_20
60 #pragma comment(lib, "openjp2.lib") // DLLを使用
61 #endif
62#endif
63
64
65#include <openjpeg.h>
66
67
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"
71
72#define JP2K_FMT_NONE 0
73#define JP2K_FMT_JP2 1
74#define JP2K_FMT_J2K 2
75#define JP2K_FMT_JPT 3
76
77
78//
79namespace jbxl {
80
82
83class JPEG2KImage
84{
85public:
86 int xs;
87 int ys;
88 int ws;
89 int hs;
90 int col;
91 int cmode;
92 int state;
93
94 opj_image_t* image;
95
96public:
97 JPEG2KImage(void) { init();}
98 virtual ~JPEG2KImage(void) {}
99
100 void init(void);
101 bool isNull(void);
102 void clear(void) { fill(0);}
103 void fill(int v=0);
104 void free(void);
105
106 void setup_image(void);
107
108 int& point(int x, int y, int c) { return image->comps->data[c*xs*ys+y*xs+x];} // 高速化のため,チェックなし.
109
110};
111
112
113
115
116JPEG2KImage readJPEG2KFile(const char* fname);
117
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);
122#else //JP2K_VER_20
123JPEG2KImage readJPEG2KData(FILE* fp, int format);
124#endif
125
126//int writeJPEG2KFile(const char* fname, JPEG2KImage jp);
127//int writeJPEG2KData(FILE* fp, JPEG2KImage jp);
128
129int isJPEG2KHeader(Buffer buf);
130int repairJPEG2KFile(const char* fname, const char* writef);
131
132//CmnHead JPEG2KImage2CmnHead(JPEG2KImage jp);
133//JPEG2KImage CmnHead2JPEGImage(CmnHead hd);
134
135// template <typename T> MSGraph<T> JPEG2KImage2MSGraph(JPEG2KImage jp)
136// template <typename T> JPEG2KImage MSGraph2JPEG2KImage(MSGraph<T> vp)
137
138
150template <typename T> MSGraph<T> JPEG2KImage2MSGraph(JPEG2KImage jp)
151{
152 MSGraph<T> vp;
153
154 if (jp.isNull()) {
155 vp.state = JBXL_GRAPH_NODATA_ERROR;
156 return vp;
157 }
158
159 vp.set(jp.ws, jp.hs, jp.col);
160 if (vp.isNull()) return vp;
161 vp.color = jp.cmode;
162
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;
167 int yy = j*jp.xs;
168 for (int i=0; i<jp.ws; i++) {
169 vp.gp[kk + i] = (T)(jp.image->comps[k].data[yy + i]); // as Byte境界
170 }
171 }
172 }
173
174 return vp;
175}
176
177
189/*
190template <typename T> JPEG2KImage MSGraph2JPEG2KImage(MSGraph<T> vp)
191{
192// image の初期化とメモリ確保が良く分らん.
193
194 JPEG2KImage jp;
195
196 if (vp.isNull()) {
197 jp.state = GRAPH_NODATA_ERROR;
198 return jp;
199 }
200
201 for (int k=0; k<jp.col; k++) {
202 int zp = k*jp.xs*jp.ys;
203 for (int j=0; j<jp.ys; j++) {
204 int yp = j*jp.xs;
205 int yz = yp + zp;
206 for (int i=0; i<jp.xs; i++) {
207 jp.image->comps[k].data[yp + i] = (int)vp.gp[yz + i];
208 }
209 }
210 }
211
212 return jp;
213}
214*/
215
216
217} // namespace
218
219
220#endif // ENABLE_OPENJPEG
221
222#endif // __JBXL_CPP_JPEG2K_TOOl_H_
223
224
225
226/*
228// Data Structure reffered from opnejpeg.h
230
231OpenJpeg-1.5
232typedef struct opj_image
233{
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
243} opj_image_t;
244
245
246OpenJpeg-2.x
247typedef struct opj_image
248{
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
258} opj_image_t;
259
260
261OpenJpeg-1.5
262typedef struct opj_image_comp
263{
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
266 int w; // data width
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
276} opj_image_comp_t;
277
278
279OpenJpeg-2.x
280typedef struct opj_image_comp
281{
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
294} opj_image_comp_t;
295
296
297OpenJpeg-1.5
298typedef enum COLOR_SPACE
299{
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
305} OPJ_COLOR_SPACE;
306
307
308OpenJpeg-2.x
309typedef enum COLOR_SPACE
310{
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
318} OPJ_COLOR_SPACE;
319
320*/
321
グラフィックデータ定義用ヘッダ
#define JBXL_GRAPH_NODATA_ERROR
データが無い
Definition jbxl_state.h:171
Definition Brep.h:29
int isNull(void *p)
Definition tools.cpp:51
汎用拡張ツールヘッダ