JunkBox_Lib++ (for Windows) 1.10.1
Loading...
Searching...
No Matches
Jpeg2KTool2.cpp
Go to the documentation of this file.
1
16#include "Jpeg2KTool.h"
17
18
19#ifdef ENABLE_OPENJPEG
20
21#if OPENJPEG_VER >= JP2K_VER_20
22
23
24using namespace jbxl;
25
26
27void JPEG2KImage::init(void)
28{
29 xs = 0;
30 ys = 0;
31 ws = 0;
32 hs = 0;
33 col = 0;
34 cmode = GRAPH_COLOR_RGBA;
35 state = 0;
36 image = NULL;
37}
38
39
40bool JPEG2KImage::isNull(void)
41{
42 if (image!=NULL && image->comps!=NULL) return false;
43 return true;
44}
45
46
47void JPEG2KImage::free(void)
48{
49 if (image!=NULL) {
50 opj_image_destroy(image);
51 }
52
53 init();
54}
55
56
57void JPEG2KImage::fill(int v)
58{
59 if (!isNull()) {
60 for (int k=0; k<col; k++) {
61 if (image->comps[k].data!=NULL) {
62 for (int i=0; i<xs*ys; i++) {
63 image->comps[k].data[i] = (OPJ_INT32)v;
64 }
65 }
66 }
67 }
68}
69
70
71void JPEG2KImage::setup_image(void)
72{
73 if (!isNull()) {
74 //
75 xs = image->x1 - image->x0;
76 ys = image->y1 - image->y0;
77
78 int fac = (int)image->comps->factor;
79 ws = (xs + (1<<fac) -1)>>fac;
80 hs = (ys + (1<<fac) -1)>>fac;
81
82 col = (int)image->numcomps;
83 /*
84 if (image->color_space==OPJ_CLRSPC_SRGB) { /// 1
85 col = 3;
86 }
87 else if (image->color_space==OPJ_CLRSPC_GRAY) { /// 2
88 col = 1;
89 }
90 else if (image->color_space == OPJ_CLRSPC_SYCC || image->color_space == OPJ_CLRSPC_EYCC) { /// 3, 4
91 col = 3;
92 }
93 else if (image->color_space==OPJ_CLRSPC_CMYK) { /// 5
94 col = 4;
95 }
96 */
97
98 // 設定されないものについては,未対応
99 cmode = GRAPH_COLOR_UNKNOWN;
100#if OPENJPEG_VER < JP2K_VER_25
101 int depth = (int)image->comps->bpp;
102#else
103 int depth = (int)image->comps->prec;
104#endif
105 DEBUG_MODE PRINT_MESG("JBXL::JPEG2KIMage::setup_image: INFO: xs = %d, ys = %d, col = %d, depth = %d\n", xs, ys, col, depth);
106 if (depth==0 || depth==8) {
107 if (col==1) cmode = GRAPH_COLOR_GRAY;
108 else if (col==3) cmode = GRAPH_COLOR_RGB;
109 else if (col==4) cmode = GRAPH_COLOR_RGBA;
110 }
111 if (cmode==GRAPH_COLOR_UNKNOWN) {
112 PRINT_MESG("JBXL::JPEG2KIMage::setup_image: unknown color mode: col = %d, depth = %d\n", col, depth);
113 cmode = GRAPH_COLOR_RGBA;
114 }
115
116/*
117 DEBUG_MODE {
118 PRINT_MESG("JPEG2KImage::setup_image: OFFSET %d %d %d %d\n", image->x0, image->y0, image->x1, image->y1);
119 PRINT_MESG("JPEG2KImage::setup_image: NUMCOMP %d\n", image->numcomps);
120 PRINT_MESG("JPEG2KImage::setup_image: COLORSP %d\n", image->color_space);
121 PRINT_MESG("JPEG2KImage::setup_image: XS YS %d %d\n", xs, ys);
122 PRINT_MESG("JPEG2KImage::setup_image: COLOR %d\n", col);
123 PRINT_MESG("JPEG2KImage::setup_image: CMODE %d\n", cmode);
124 PRINT_MESG("\n");
125 for (int i=0; i<(int)image->numcomps; i++) {
126 PRINT_MESG("JPEG2KImage::setup_image: DX DY %d %d\n", image->comps[i].dx, image->comps[i].dy);
127 PRINT_MESG("JPEG2KImage::setup_image: W H %d %d\n", image->comps[i].w, image->comps[i].h);
128 PRINT_MESG("JPEG2KImage::setup_image: X0 Y0 %d %d\n", image->comps[i].x0, image->comps[i].y0);
129 PRINT_MESG("JPEG2KImage::setup_image: PREC %d\n", image->comps[i].prec);
130 PRINT_MESG("JPEG2KImage::setup_image: DEPTH %d\n", image->comps[i].bpp);
131 PRINT_MESG("JPEG2KImage::setup_image: SGND %d\n", image->comps[i].sgnd);
132 PRINT_MESG("JPEG2KImage::setup_image: RESNO %d\n", image->comps[i].resno_decoded);
133 PRINT_MESG("JPEG2KImage::setup_image: FACT %d\n", image->comps[i].factor);
134 PRINT_MESG("\n");
135 }
136 }
137*/
138 }
139}
140
141
142
144
145JPEG2KImage jbxl::readJPEG2KFile(const char* fname)
146{
147 JPEG2KImage jp;
148 //
149 if (fname==NULL) {
150 jp.state = JBXL_GRAPH_IVDARG_ERROR;
151 return jp;
152 }
153
154 FILE* fp = fopen(fname, "rb");
155 if (fp==NULL) {
156 jp.state = JBXL_GRAPH_OPFILE_ERROR;
157 return jp;
158 }
159
160 Buffer buf = read_Buffer_data(fp, 12);
161 if (buf.vldsz<12) {
162 free_Buffer(&buf);
163 jp.state = JBXL_GRAPH_FILESZ_ERROR;
164 fclose(fp);
165 return jp;
166 }
167
168 fseek(fp, 0, 0);
169 int format = isJPEG2KHeader(buf);
170 if (format==JP2K_FMT_NONE) format = JP2K_FMT_JPT;
171 free_Buffer(&buf);
172
173#if OPENJPEG_VER < JP2K_VER_21
174 jp = readJPEG2KData(fp, format);
175 fclose(fp);
176#else
177 fclose(fp);
178 jp = readJPEG2KData(fname, format);
179#endif
180
181 return jp;
182}
183
184
185#if OPENJPEG_VER < JP2K_VER_21
186JPEG2KImage jbxl::readJPEG2KData(FILE* fp, int format)
187#else
188JPEG2KImage jbxl::readJPEG2KData(const char* fname, int format)
189#endif
190{
191 JPEG2KImage jp;
192
193 opj_stream_t* stream = NULL;
194 opj_codec_t* codec = NULL;
195
196 opj_dparameters_t parameters;
197 opj_set_default_decoder_parameters(&parameters);
198
199#if OPENJPEG_VER < JP2K_VER_21
200 stream = opj_stream_create_default_file_stream(fp, 1);
201#else
202 stream = opj_stream_create_default_file_stream(fname, 1);
203#endif
204 if (stream==NULL){
205 jp.state = JBXL_GRAPH_RDFILE_ERROR;
206 return jp;
207 }
208
209 if (format==JP2K_FMT_J2K) { // JPEG 2000 codestream
210 codec = opj_create_decompress(OPJ_CODEC_J2K);
211 }
212 else if (format==JP2K_FMT_JP2) { // JPEG 2000 compressed image data
213 codec = opj_create_decompress(OPJ_CODEC_JP2);
214 }
215 else if (format==JP2K_FMT_JPT) { // JPEG 2000 JPIP
216 codec = opj_create_decompress(OPJ_CODEC_JPT);
217 }
218 else {
219 PRINT_MESG("JBXL::readJPEG2KData: ERROR: unknown file format!\n");
220 opj_stream_destroy(stream);
221 return jp;
222 }
223
224 if (!opj_setup_decoder(codec, &parameters) ){
225 opj_stream_destroy(stream);
226 opj_destroy_codec(codec);
227 jp.state = JBXL_GRAPH_ERROR;
228 return jp;
229 }
230
231 // allow_partial
232 if (!opj_decoder_set_strict_mode(codec, OPJ_FALSE)) { // #define OPJ_FALSE 0
233 opj_stream_destroy(stream);
234 opj_destroy_codec(codec);
235 jp.state = JBXL_GRAPH_ERROR;
236 return jp;
237 }
238
239 /*
240 if (!opj_codec_set_threads(codec, 1)) {
241 opj_stream_destroy(stream);
242 opj_destroy_codec(codec);
243 jp.state = JBXL_GRAPH_ERROR;
244 return jp;
245 }*/
246
247 if (!opj_read_header(stream, codec, &jp.image)){
248 opj_stream_destroy(stream);
249 opj_destroy_codec(codec);
250 jp.state = JBXL_GRAPH_ERROR;
251 return jp;
252 }
253
254// if (!opj_set_decode_area(codec, jp.image, 0, 0, 0, 0)){
255 if (!opj_set_decode_area(codec, jp.image, (OPJ_INT32)parameters.DA_x0, (OPJ_INT32)parameters.DA_y0, (OPJ_INT32)parameters.DA_x1, (OPJ_INT32)parameters.DA_y1)){
256 opj_stream_destroy(stream);
257 opj_destroy_codec(codec);
258 jp.free();
259 jp.state = JBXL_GRAPH_ERROR;
260 return jp;
261 }
262
263 if (!(opj_decode(codec, stream, jp.image) && opj_end_decompress(codec, stream))) {
264 opj_destroy_codec(codec);
265 opj_stream_destroy(stream);
266 jp.free();
267 jp.state = JBXL_GRAPH_ERROR;
268 return jp;
269 }
270
271 jp.setup_image();
272
273 opj_stream_destroy(stream);
274 opj_destroy_codec(codec);
275
276 return jp;
277}
278
279
280#include "Jpeg2KToolCommon.cpp"
281
282
283#endif // OPENJPEG_VER >= JP2K_VER_20
284#endif // ENABLE_OPENJPEG
285
JPEG 2000グラフィックデータ定義用ヘッダ
void free_Buffer(Buffer *buf)
Buffer型変数のバッファ部を解放する
Definition buffer.cpp:128
Buffer read_Buffer_data(FILE *fp, int sz)
ファイルポインタ fp から szバイトをBuffer型変数に読み込む.
Definition buffer.cpp:1497
#define GRAPH_COLOR_UNKNOWN
0x0070
Definition gheader.h:302
#define GRAPH_COLOR_RGBA
Definition gheader.h:283
#define GRAPH_COLOR_RGB
Definition gheader.h:270
#define GRAPH_COLOR_GRAY
Definition gheader.h:244
#define JBXL_GRAPH_IVDARG_ERROR
無効な引数
Definition jbxl_state.h:178
#define JBXL_GRAPH_ERROR
GRAPH ライブラリーのエラー
Definition jbxl_state.h:167
#define JBXL_GRAPH_OPFILE_ERROR
ファイルのオープンエラー
Definition jbxl_state.h:173
#define JBXL_GRAPH_RDFILE_ERROR
ファイルの読み込みエラー
Definition jbxl_state.h:174
#define JBXL_GRAPH_FILESZ_ERROR
ファイルサイズのエラー
Definition jbxl_state.h:176
Definition Brep.h:29
int vldsz
データの長さ.バイナリデータの場合も使用可能.文字列の場合は 0x00 を含まない.
Definition buffer.h:37
int isNull(void *p)
Definition tools.cpp:51
#define PRINT_MESG(...)
環境依存用の出力関数.MS Windows用は未実装
Definition tools.h:469
#define DEBUG_MODE
Definition tools.h:502