21#if OPENJPEG_VER >= JP2K_VER_20
27void JPEG2KImage::init(
void)
40bool JPEG2KImage::isNull(
void)
42 if (image!=NULL && image->comps!=NULL)
return false;
47void JPEG2KImage::free(
void)
50 opj_image_destroy(image);
57void JPEG2KImage::fill(
int v)
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;
71void JPEG2KImage::setup_image(
void)
75 xs = image->x1 - image->x0;
76 ys = image->y1 - image->y0;
78 int fac = (int)image->comps->factor;
79 ws = (xs + (1<<fac) -1)>>fac;
80 hs = (ys + (1<<fac) -1)>>fac;
82 col = (int)image->numcomps;
100#if OPENJPEG_VER < JP2K_VER_25
101 int depth = (int)image->comps->bpp;
103 int depth = (int)image->comps->prec;
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) {
112 PRINT_MESG(
"JBXL::JPEG2KIMage::setup_image: unknown color mode: col = %d, depth = %d\n", col, depth);
145JPEG2KImage jbxl::readJPEG2KFile(
const char* fname)
154 FILE* fp = fopen(fname,
"rb");
169 int format = isJPEG2KHeader(buf);
170 if (format==JP2K_FMT_NONE) format = JP2K_FMT_JPT;
173#if OPENJPEG_VER < JP2K_VER_21
174 jp = readJPEG2KData(fp, format);
178 jp = readJPEG2KData(fname, format);
185#if OPENJPEG_VER < JP2K_VER_21
186JPEG2KImage jbxl::readJPEG2KData(FILE* fp,
int format)
188JPEG2KImage jbxl::readJPEG2KData(
const char* fname,
int format)
193 opj_stream_t* stream = NULL;
194 opj_codec_t* codec = NULL;
196 opj_dparameters_t parameters;
197 opj_set_default_decoder_parameters(¶meters);
199#if OPENJPEG_VER < JP2K_VER_21
200 stream = opj_stream_create_default_file_stream(fp, 1);
202 stream = opj_stream_create_default_file_stream(fname, 1);
209 if (format==JP2K_FMT_J2K) {
210 codec = opj_create_decompress(OPJ_CODEC_J2K);
212 else if (format==JP2K_FMT_JP2) {
213 codec = opj_create_decompress(OPJ_CODEC_JP2);
215 else if (format==JP2K_FMT_JPT) {
216 codec = opj_create_decompress(OPJ_CODEC_JPT);
219 PRINT_MESG(
"JBXL::readJPEG2KData: ERROR: unknown file format!\n");
220 opj_stream_destroy(stream);
224 if (!opj_setup_decoder(codec, ¶meters) ){
225 opj_stream_destroy(stream);
226 opj_destroy_codec(codec);
232 if (!opj_decoder_set_strict_mode(codec, OPJ_FALSE)) {
233 opj_stream_destroy(stream);
234 opj_destroy_codec(codec);
247 if (!opj_read_header(stream, codec, &jp.image)){
248 opj_stream_destroy(stream);
249 opj_destroy_codec(codec);
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);
263 if (!(opj_decode(codec, stream, jp.image) && opj_end_decompress(codec, stream))) {
264 opj_destroy_codec(codec);
265 opj_stream_destroy(stream);
273 opj_stream_destroy(stream);
274 opj_destroy_codec(codec);
void free_Buffer(Buffer *buf)
Buffer型変数のバッファ部を解放する
Buffer read_Buffer_data(FILE *fp, int sz)
ファイルポインタ fp から szバイトをBuffer型変数に読み込む.
#define JBXL_GRAPH_IVDARG_ERROR
無効な引数
#define JBXL_GRAPH_ERROR
GRAPH ライブラリーのエラー
#define JBXL_GRAPH_OPFILE_ERROR
ファイルのオープンエラー
#define JBXL_GRAPH_RDFILE_ERROR
ファイルの読み込みエラー
#define JBXL_GRAPH_FILESZ_ERROR
ファイルサイズのエラー
int vldsz
データの長さ.バイナリデータの場合も使用可能.文字列の場合は 0x00 を含まない.