2003-11-27 11:07:31 +01:00
|
|
|
/* Copyright (c) 2001 David Janssens
|
2005-01-26 09:59:49 +01:00
|
|
|
* Copyright (c) 2002-2003 Yannick Verschueren
|
|
|
|
* Copyright (c) 2002-2003 Communications and remote sensing Laboratory, Universite catholique de Louvain, Belgium
|
|
|
|
*
|
|
|
|
* All rights reserved.
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
2003-11-27 11:07:31 +01:00
|
|
|
|
2004-11-26 17:33:18 +01:00
|
|
|
|
|
|
|
|
2004-08-06 16:13:51 +02:00
|
|
|
//MEMORY LEAK
|
2004-11-26 17:33:18 +01:00
|
|
|
|
2004-08-06 16:13:51 +02:00
|
|
|
#ifdef _DEBUG
|
2004-11-26 17:33:18 +01:00
|
|
|
|
2004-08-06 16:13:51 +02:00
|
|
|
#define _CRTDBG_MAP_ALLOC
|
2004-11-26 17:33:18 +01:00
|
|
|
|
2004-08-06 16:13:51 +02:00
|
|
|
#include <stdlib.h> // Must be included first
|
2004-11-26 17:33:18 +01:00
|
|
|
|
2004-08-06 16:13:51 +02:00
|
|
|
#include <crtdbg.h>
|
2004-11-26 17:33:18 +01:00
|
|
|
|
2004-08-06 16:13:51 +02:00
|
|
|
#endif
|
2004-11-26 17:33:18 +01:00
|
|
|
|
2004-08-06 16:13:51 +02:00
|
|
|
//MEM
|
|
|
|
|
2003-11-27 11:07:31 +01:00
|
|
|
|
|
|
|
|
|
|
|
#include <openjpeg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2004-03-05 15:42:53 +01:00
|
|
|
#include <string.h>
|
2005-01-26 09:59:49 +01:00
|
|
|
#ifndef DONT_HAVE_GETOPT
|
|
|
|
#include <getopt.h>
|
|
|
|
#else
|
|
|
|
#include "compat/getopt.h"
|
|
|
|
#endif
|
2003-11-27 11:07:31 +01:00
|
|
|
|
2005-01-26 09:59:49 +01:00
|
|
|
void usage_display(char *prgm)
|
2003-11-27 11:07:31 +01:00
|
|
|
{
|
2005-01-26 09:59:49 +01:00
|
|
|
fprintf(stdout,"Usage:\n");
|
|
|
|
fprintf(stdout," %s...\n",prgm);
|
|
|
|
fprintf(stdout," -i <compressed file>\n");
|
|
|
|
fprintf(stdout," REQUIRED\n");
|
|
|
|
fprintf(stdout," Currently accepts J2K-files, JP2-files and JPT-files. The file type\n");
|
|
|
|
fprintf(stdout," is identified based on its suffix.\n");
|
|
|
|
fprintf(stdout," -o <decompressed file>\n");
|
|
|
|
fprintf(stdout," REQUIRED\n");
|
|
|
|
fprintf(stdout," Currently accepts PGM-files, PPM-files, PNM-files, PGX-files and\n");
|
|
|
|
fprintf(stdout," BMP-files. Binary data is written to the file (not ascii). If a PGX\n");
|
|
|
|
fprintf(stdout," filename is given, there will be as many output files as there are\n");
|
|
|
|
fprintf(stdout," components: an indice starting from 0 will then be appended to the\n");
|
|
|
|
fprintf(stdout," output filename, just before the \"pgx\" extension. If a PGM filename\n");
|
|
|
|
fprintf(stdout," is given and there are more than one component, only the first component\n");
|
|
|
|
fprintf(stdout," will be written to the file.\n");
|
|
|
|
fprintf(stdout," -r <reduce factor>\n");
|
|
|
|
fprintf(stdout," Set the number of highest resolution levels to be discarded. The\n");
|
|
|
|
fprintf(stdout," image resolution is effectively divided by 2 to the power of the\n");
|
|
|
|
fprintf(stdout," number of discarded levels. The reduce factor is limited by the\n");
|
|
|
|
fprintf(stdout," smallest total number of decomposition levels among tiles.\n");
|
2005-01-26 10:59:31 +01:00
|
|
|
fprintf(stdout," -l <number of quality layers to decode>\n");
|
|
|
|
fprintf(stdout," Set the maximum number of quality layers to decode. If there are\n");
|
|
|
|
fprintf(stdout," less quality layers than the specified number, all the quality layers\n");
|
|
|
|
fprintf(stdout," are decoded.\n");
|
2005-01-26 09:59:49 +01:00
|
|
|
fprintf(stdout," -u\n");
|
|
|
|
fprintf(stdout," print an usage statement\n");
|
|
|
|
fprintf(stdout,"\n");
|
2003-11-27 11:07:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2005-01-26 09:59:49 +01:00
|
|
|
FILE *fsrc=NULL;
|
|
|
|
FILE *fdest=NULL;
|
|
|
|
char *infile=NULL;
|
|
|
|
char *outfile=NULL;
|
|
|
|
char *tmp=NULL;
|
|
|
|
char S1, S2, S3;
|
|
|
|
|
|
|
|
char *src=NULL;
|
|
|
|
char *dest=NULL;
|
|
|
|
|
2004-04-29 15:27:24 +02:00
|
|
|
int len;
|
2005-01-26 09:59:49 +01:00
|
|
|
|
2004-07-13 16:37:11 +02:00
|
|
|
j2k_image_t img;
|
|
|
|
j2k_cp_t cp;
|
2005-01-26 09:59:49 +01:00
|
|
|
jp2_struct_t *jp2_struct=NULL;
|
|
|
|
|
2004-04-29 15:27:24 +02:00
|
|
|
int w, wr, wrr, h, hr, hrr, max;
|
2005-01-26 09:59:49 +01:00
|
|
|
int i, compno, pad, j;
|
2004-04-29 15:27:24 +02:00
|
|
|
int adjust;
|
2005-01-26 09:59:49 +01:00
|
|
|
|
|
|
|
cp.layer=0;
|
|
|
|
cp.reduce=0;
|
|
|
|
cp.decod_format=-1;
|
|
|
|
cp.cod_format=-1;
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
int c = getopt(argc, argv,"i:o:r:l:u");
|
|
|
|
if (c == -1)
|
|
|
|
break;
|
|
|
|
switch (c) {
|
|
|
|
|
|
|
|
//Input file
|
|
|
|
case 'i':
|
|
|
|
infile = optarg;
|
|
|
|
tmp = optarg;
|
|
|
|
while (*tmp) {
|
|
|
|
tmp++;
|
|
|
|
}
|
|
|
|
tmp--;
|
|
|
|
S3 = *tmp;
|
|
|
|
tmp--;
|
|
|
|
S2 = *tmp;
|
|
|
|
tmp--;
|
|
|
|
S1 = *tmp;
|
|
|
|
|
|
|
|
/* J2K format */
|
|
|
|
if ((S1 == 'j' && S2 == '2' && S3 == 'k')
|
|
|
|
|| (S1 == 'J' && S2 == '2' && S3 == 'K')
|
|
|
|
|| (S1 == 'j' && S2 == '2' && S3 == 'c')
|
|
|
|
|| (S1 == 'J' && S2 == '2' && S3 == 'C')) {
|
|
|
|
cp.cod_format=J2K_CFMT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* JP2 format */
|
|
|
|
if ((S1 == 'j' && S2 == 'p' && S3 == '2')
|
|
|
|
|| (S1 == 'J' && S2 == 'P' && S3 == '2')) {
|
|
|
|
cp.cod_format=JP2_CFMT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* JPT format */
|
|
|
|
if ((S1 == 'j' && S2 == 'p' && S3 == 't')
|
|
|
|
|| (S1 == 'J' && S2 == 'P' && S3 == 'T')) {
|
|
|
|
cp.cod_format=JPT_CFMT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(stderr,
|
|
|
|
"j2k_to_image : Unknown input image format *.%c%c%c [only *.j2k, *.jp2, *.jpc or *.jpt]!! \n",
|
|
|
|
S1, S2, S3);
|
|
|
|
return 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* ----------------------------------------------------- */
|
|
|
|
|
|
|
|
//Output file
|
|
|
|
case 'o':
|
|
|
|
outfile = optarg;
|
|
|
|
tmp = optarg;
|
|
|
|
while (*tmp) {
|
|
|
|
tmp++;
|
|
|
|
}
|
|
|
|
tmp--;
|
|
|
|
S3 = *tmp;
|
|
|
|
tmp--;
|
|
|
|
S2 = *tmp;
|
|
|
|
tmp--;
|
|
|
|
S1 = *tmp;
|
|
|
|
|
|
|
|
// PGX format
|
|
|
|
if ((S1 == 'p' && S2 == 'g' && S3 == 'x')
|
|
|
|
|| (S1 == 'P' && S2 == 'G' && S3 == 'X')) {
|
|
|
|
cp.decod_format = PGX_DFMT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// PxM format
|
|
|
|
if ((S1 == 'p' && S2 == 'n' && S3 == 'm')
|
|
|
|
|| (S1 == 'P' && S2 == 'N' && S3 == 'M')
|
|
|
|
|| (S1 == 'p' && S2 == 'g' && S3 == 'm')
|
|
|
|
|| (S1 == 'P' && S2 == 'G' && S3 == 'M')
|
|
|
|
|| (S1 == 'P' && S2 == 'P' && S3 == 'M')
|
|
|
|
|| (S1 == 'p' && S2 == 'p' && S3 == 'm')) {
|
|
|
|
cp.decod_format = PXM_DFMT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// BMP format
|
|
|
|
if ((S1 == 'b' && S2 == 'm' && S3 == 'p')
|
|
|
|
|| (S1 == 'B' && S2 == 'M' && S3 == 'P')) {
|
|
|
|
cp.decod_format = BMP_DFMT;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// otherwise : error
|
2004-04-29 15:27:24 +02:00
|
|
|
fprintf(stderr,
|
2005-01-26 09:59:49 +01:00
|
|
|
"!! Unrecognized output image format *.%c%c%c [only *.pnm, *.pgm, *.ppm, *.pgx or *.bmp] !!\n",
|
|
|
|
S1, S2, S3);
|
|
|
|
|
2004-04-29 15:27:24 +02:00
|
|
|
return 1;
|
2005-01-26 09:59:49 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
/* ----------------------------------------------------- */
|
|
|
|
|
|
|
|
//Reduce option
|
|
|
|
case 'r':
|
|
|
|
tmp=optarg;
|
|
|
|
sscanf(tmp, "%d", &cp.reduce);
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* ----------------------------------------------------- */
|
|
|
|
|
|
|
|
//Layering option
|
|
|
|
case 'l':
|
|
|
|
tmp=optarg;
|
|
|
|
sscanf(tmp, "%d", &cp.layer);
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* ----------------------------------------------------- */
|
|
|
|
|
|
|
|
case 'u':
|
|
|
|
usage_display(argv[0]);
|
|
|
|
return 0;
|
|
|
|
break;
|
|
|
|
/* ----------------------------------------------------- */
|
|
|
|
|
|
|
|
default:
|
|
|
|
fprintf(stderr,"WARNING -> this option is not valid \"-%c %s\"\n",c,optarg);
|
|
|
|
break;
|
|
|
|
|
2004-04-29 15:10:05 +02:00
|
|
|
}
|
2004-04-29 15:27:24 +02:00
|
|
|
}
|
2005-01-26 09:59:49 +01:00
|
|
|
|
|
|
|
//Check required arguments
|
|
|
|
//------------------------
|
|
|
|
if (!infile || !outfile) {
|
|
|
|
fprintf(stderr,"ERROR -> At least one required argument is missing\nCheck j2k_to_image -u for usage information\n");
|
|
|
|
return 1;
|
2004-04-29 15:27:24 +02:00
|
|
|
}
|
2005-01-26 09:59:49 +01:00
|
|
|
|
|
|
|
//Read the input file and put it in memory
|
|
|
|
//----------------------------------------
|
|
|
|
fsrc = fopen(infile, "rb");
|
|
|
|
if (!fsrc) {
|
|
|
|
fprintf(stderr, "ERROR -> failed to open %s for reading\n", infile);
|
2004-04-29 15:27:24 +02:00
|
|
|
return 1;
|
|
|
|
}
|
2005-01-26 09:59:49 +01:00
|
|
|
fseek(fsrc, 0, SEEK_END);
|
|
|
|
len = ftell(fsrc);
|
|
|
|
fseek(fsrc, 0, SEEK_SET);
|
2004-04-29 15:27:24 +02:00
|
|
|
src = (char *) malloc(len);
|
2005-01-26 09:59:49 +01:00
|
|
|
fread(src, 1, len, fsrc);
|
|
|
|
fclose(fsrc);
|
|
|
|
|
|
|
|
//Decode the code-stream
|
|
|
|
//----------------------
|
|
|
|
switch(cp.cod_format) {
|
|
|
|
|
|
|
|
case J2K_CFMT:
|
2004-07-13 16:37:11 +02:00
|
|
|
if (!j2k_decode(src, len, &img, &cp)) {
|
2005-01-26 09:59:49 +01:00
|
|
|
fprintf(stderr, "ERROR -> j2k_to_image: failed to decode image!\n");
|
2004-04-29 15:27:24 +02:00
|
|
|
return 1;
|
2004-04-29 15:10:05 +02:00
|
|
|
}
|
2005-01-26 09:59:49 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case JP2_CFMT:
|
2004-07-07 09:35:34 +02:00
|
|
|
jp2_struct = (jp2_struct_t *) malloc(sizeof(jp2_struct_t));
|
2004-07-20 07:40:55 +02:00
|
|
|
jp2_struct->image = &img;
|
2005-01-26 09:59:49 +01:00
|
|
|
|
2004-11-26 17:33:18 +01:00
|
|
|
if (jp2_read_struct(src, jp2_struct, len)) {
|
2005-01-26 09:59:49 +01:00
|
|
|
fprintf(stderr, "ERROR -> j2k_to_image: failed to decode jp2 structure!\n");
|
2004-11-26 17:33:18 +01:00
|
|
|
return 1;
|
|
|
|
}
|
2005-01-26 09:59:49 +01:00
|
|
|
|
2004-11-26 17:33:18 +01:00
|
|
|
if (!j2k_decode(src + jp2_struct->j2k_codestream_offset, jp2_struct->j2k_codestream_len, &img, &cp)) {
|
2005-01-26 09:59:49 +01:00
|
|
|
fprintf(stderr, "ERROR -> j2k_to_image: failed to decode image!\n");
|
2004-07-07 09:35:34 +02:00
|
|
|
return 1;
|
|
|
|
}
|
2005-01-26 09:59:49 +01:00
|
|
|
|
2004-07-16 12:31:10 +02:00
|
|
|
/* Insert code here if you want to create actions on jp2_struct before deleting it */
|
2005-01-26 09:59:49 +01:00
|
|
|
|
2004-07-16 12:31:10 +02:00
|
|
|
free(jp2_struct);
|
2005-01-26 09:59:49 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
case JPT_CFMT:
|
2004-07-20 07:40:55 +02:00
|
|
|
if (!j2k_decode_jpt_stream(src, len, &img, &cp)) {
|
2005-01-26 09:59:49 +01:00
|
|
|
fprintf(stderr, "ERROR -> j2k_to_image: failed to decode JPT-file!\n");
|
2004-04-29 15:27:24 +02:00
|
|
|
return 1;
|
2004-04-29 15:10:05 +02:00
|
|
|
}
|
2005-01-26 09:59:49 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2004-07-20 07:40:55 +02:00
|
|
|
fprintf(stderr,
|
2005-01-26 09:59:49 +01:00
|
|
|
"ERROR -> j2k_to_image : Unknown input image format\n");
|
2004-07-20 07:40:55 +02:00
|
|
|
return 1;
|
2005-01-26 09:59:49 +01:00
|
|
|
break;
|
2004-07-20 07:40:55 +02:00
|
|
|
}
|
2005-01-26 09:59:49 +01:00
|
|
|
|
|
|
|
//Free the memory containing the code-stream
|
|
|
|
//------------------------------------------
|
|
|
|
|
2004-04-29 15:27:24 +02:00
|
|
|
free(src);
|
2005-01-26 09:59:49 +01:00
|
|
|
|
|
|
|
|
|
|
|
//Create output image
|
|
|
|
//-------------------
|
|
|
|
|
2004-04-29 15:27:24 +02:00
|
|
|
/* ---------------------------- / */
|
|
|
|
/* / / */
|
|
|
|
/* / FORMAT : PNM, PGM or PPM / */
|
|
|
|
/* / / */
|
|
|
|
/* ---------------------------- / */
|
2005-01-26 09:59:49 +01:00
|
|
|
|
|
|
|
switch (cp.decod_format) {
|
|
|
|
case PXM_DFMT: /* PNM PGM PPM */
|
|
|
|
|
|
|
|
tmp=outfile;
|
|
|
|
while (*tmp) {
|
|
|
|
tmp++;
|
|
|
|
}
|
|
|
|
tmp--;
|
|
|
|
tmp--;
|
|
|
|
S2 = *tmp;
|
|
|
|
|
2004-07-13 16:37:11 +02:00
|
|
|
if (img.numcomps == 3 && img.comps[0].dx == img.comps[1].dx
|
2005-01-26 09:59:49 +01:00
|
|
|
&& img.comps[1].dx == img.comps[2].dx
|
|
|
|
&& img.comps[0].dy == img.comps[1].dy
|
|
|
|
&& img.comps[1].dy == img.comps[2].dy
|
|
|
|
&& img.comps[0].prec == img.comps[1].prec
|
|
|
|
&& img.comps[1].prec == img.comps[2].prec
|
|
|
|
&& S2 !='g' && S2 !='G') {
|
|
|
|
|
|
|
|
fdest = fopen(outfile, "wb");
|
|
|
|
if (!fdest) {
|
|
|
|
fprintf(stderr, "ERROR -> failed to open %s for writing\n", outfile);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
w = int_ceildiv(img.x1 - img.x0, img.comps[0].dx);
|
|
|
|
// wr = int_ceildiv(int_ceildivpow2(img.x1 - img.x0,img.factor),img.comps[0].dx);
|
2004-07-13 16:37:11 +02:00
|
|
|
wr = img.comps[0].w;
|
|
|
|
wrr = int_ceildivpow2(img.comps[0].w, img.comps[0].factor);
|
2005-01-26 09:59:49 +01:00
|
|
|
|
|
|
|
h = int_ceildiv(img.y1 - img.y0, img.comps[0].dy);
|
|
|
|
// hr = int_ceildiv(int_ceildivpow2(img.y1 - img.y0,img.factor), img.comps[0].dy);
|
2004-07-13 16:37:11 +02:00
|
|
|
hr = img.comps[0].h;
|
|
|
|
hrr = int_ceildivpow2(img.comps[0].h, img.comps[0].factor);
|
2005-01-26 09:59:49 +01:00
|
|
|
|
2004-07-13 16:37:11 +02:00
|
|
|
max = img.comps[0].prec > 8 ? 255 : (1 << img.comps[0].prec) - 1;
|
2005-01-26 09:59:49 +01:00
|
|
|
|
2004-07-13 16:37:11 +02:00
|
|
|
img.comps[0].x0 =
|
|
|
|
int_ceildivpow2(img.comps[0].x0 -
|
2005-01-26 09:59:49 +01:00
|
|
|
int_ceildiv(img.x0, img.comps[0].dx),
|
|
|
|
img.comps[0].factor);
|
2004-07-13 16:37:11 +02:00
|
|
|
img.comps[0].y0 =
|
|
|
|
int_ceildivpow2(img.comps[0].y0 -
|
2005-01-26 09:59:49 +01:00
|
|
|
int_ceildiv(img.y0, img.comps[0].dy),
|
|
|
|
img.comps[0].factor);
|
|
|
|
|
|
|
|
|
|
|
|
fprintf(fdest, "P6\n# %d %d %d %d %d\n%d %d\n%d\n",
|
|
|
|
cp.tcps[cp.tileno[0]].tccps[0].numresolutions, w, h,
|
|
|
|
img.comps[0].x0, img.comps[0].y0, wrr, hrr, max);
|
2004-07-13 16:37:11 +02:00
|
|
|
adjust = img.comps[0].prec > 8 ? img.comps[0].prec - 8 : 0;
|
2004-04-29 15:27:24 +02:00
|
|
|
for (i = 0; i < wrr * hrr; i++) {
|
|
|
|
char r, g, b;
|
2004-07-13 16:37:11 +02:00
|
|
|
r = img.comps[0].data[i / wrr * wr + i % wrr];
|
|
|
|
r += (img.comps[0].sgnd ? 1 << (img.comps[0].prec - 1) : 0);
|
2004-04-29 15:27:24 +02:00
|
|
|
r = r >> adjust;
|
2005-01-26 09:59:49 +01:00
|
|
|
|
2004-07-13 16:37:11 +02:00
|
|
|
g = img.comps[1].data[i / wrr * wr + i % wrr];
|
|
|
|
g += (img.comps[1].sgnd ? 1 << (img.comps[1].prec - 1) : 0);
|
2004-04-29 15:27:24 +02:00
|
|
|
g = g >> adjust;
|
2005-01-26 09:59:49 +01:00
|
|
|
|
2004-07-13 16:37:11 +02:00
|
|
|
b = img.comps[2].data[i / wrr * wr + i % wrr];
|
|
|
|
b += (img.comps[2].sgnd ? 1 << (img.comps[2].prec - 1) : 0);
|
2004-04-29 15:27:24 +02:00
|
|
|
b = b >> adjust;
|
2005-01-26 09:59:49 +01:00
|
|
|
|
|
|
|
fprintf(fdest, "%c%c%c", r, g, b);
|
2004-04-29 15:27:24 +02:00
|
|
|
}
|
2004-07-16 12:31:10 +02:00
|
|
|
free(img.comps[0].data);
|
|
|
|
free(img.comps[1].data);
|
|
|
|
free(img.comps[2].data);
|
2005-01-26 09:59:49 +01:00
|
|
|
fclose(fdest);
|
|
|
|
|
2004-04-29 15:10:05 +02:00
|
|
|
} else {
|
2005-01-26 09:59:49 +01:00
|
|
|
int ncomp=(S2=='g' || S2=='G')?1:img.numcomps;
|
|
|
|
if (img.numcomps>ncomp) {
|
|
|
|
fprintf(stderr,"WARNING -> [PGM files] Only the first component\n");
|
|
|
|
fprintf(stderr," is written to the file\n");
|
|
|
|
}
|
|
|
|
for (compno = 0; compno < ncomp; compno++) {
|
2004-04-29 15:27:24 +02:00
|
|
|
char name[256];
|
2005-01-26 09:59:49 +01:00
|
|
|
if (ncomp > 1) {
|
|
|
|
sprintf(name, "%d.%s", compno, outfile);
|
2004-04-29 15:10:05 +02:00
|
|
|
} else {
|
2005-01-26 09:59:49 +01:00
|
|
|
sprintf(name, "%s", outfile);
|
2004-04-29 15:27:24 +02:00
|
|
|
}
|
2005-01-26 09:59:49 +01:00
|
|
|
|
|
|
|
fdest = fopen(name, "wb");
|
|
|
|
if (!fdest) {
|
|
|
|
fprintf(stderr, "ERROR -> failed to open %s for writing\n", name);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
w = int_ceildiv(img.x1 - img.x0, img.comps[compno].dx);
|
|
|
|
// wr = int_ceildiv(int_ceildivpow2(img.x1 - img.x0,img.factor),img.comps[compno].dx);
|
2004-07-13 16:37:11 +02:00
|
|
|
wr = img.comps[compno].w;
|
2004-04-29 15:27:24 +02:00
|
|
|
wrr =
|
2004-07-13 16:37:11 +02:00
|
|
|
int_ceildivpow2(img.comps[compno].w, img.comps[compno].factor);
|
2005-01-26 09:59:49 +01:00
|
|
|
|
|
|
|
h = int_ceildiv(img.y1 - img.y0, img.comps[compno].dy);
|
|
|
|
// hr = int_ceildiv(int_ceildivpow2(img.y1 - img.y0,img.factor), img.comps[compno].dy);
|
2004-07-13 16:37:11 +02:00
|
|
|
hr = img.comps[compno].h;
|
2004-04-29 15:27:24 +02:00
|
|
|
hrr =
|
2004-07-13 16:37:11 +02:00
|
|
|
int_ceildivpow2(img.comps[compno].h, img.comps[compno].factor);
|
2005-01-26 09:59:49 +01:00
|
|
|
|
2004-04-29 15:27:24 +02:00
|
|
|
max =
|
2004-07-13 16:37:11 +02:00
|
|
|
img.comps[compno].prec >
|
|
|
|
8 ? 255 : (1 << img.comps[compno].prec) - 1;
|
2005-01-26 09:59:49 +01:00
|
|
|
|
2004-07-13 16:37:11 +02:00
|
|
|
img.comps[compno].x0 =
|
|
|
|
int_ceildivpow2(img.comps[compno].x0 -
|
2005-01-26 09:59:49 +01:00
|
|
|
int_ceildiv(img.x0,
|
2004-07-13 16:37:11 +02:00
|
|
|
img.comps[compno].dx),
|
2005-01-26 09:59:49 +01:00
|
|
|
img.comps[compno].factor);
|
2004-07-13 16:37:11 +02:00
|
|
|
img.comps[compno].y0 =
|
|
|
|
int_ceildivpow2(img.comps[compno].y0 -
|
2005-01-26 09:59:49 +01:00
|
|
|
int_ceildiv(img.y0,
|
2004-07-13 16:37:11 +02:00
|
|
|
img.comps[compno].dy),
|
2005-01-26 09:59:49 +01:00
|
|
|
img.comps[compno].factor);
|
|
|
|
|
|
|
|
fprintf(fdest, "P5\n# %d %d %d %d %d\n%d %d\n%d\n",
|
|
|
|
cp.tcps[cp.tileno[0]].tccps[compno].
|
|
|
|
numresolutions, w, h, img.comps[compno].x0,
|
|
|
|
img.comps[compno].y0, wrr, hrr, max);
|
2004-04-29 15:27:24 +02:00
|
|
|
adjust =
|
2004-07-13 16:37:11 +02:00
|
|
|
img.comps[compno].prec > 8 ? img.comps[compno].prec - 8 : 0;
|
2004-04-29 15:27:24 +02:00
|
|
|
for (i = 0; i < wrr * hrr; i++) {
|
|
|
|
char l;
|
2004-07-13 16:37:11 +02:00
|
|
|
l = img.comps[compno].data[i / wrr * wr + i % wrr];
|
|
|
|
l += (img.comps[compno].
|
2005-01-26 09:59:49 +01:00
|
|
|
sgnd ? 1 << (img.comps[compno].prec - 1) : 0);
|
2004-04-29 15:27:24 +02:00
|
|
|
l = l >> adjust;
|
2005-01-26 09:59:49 +01:00
|
|
|
fprintf(fdest, "%c", l);
|
2003-11-27 11:07:31 +01:00
|
|
|
}
|
2005-01-26 09:59:49 +01:00
|
|
|
fclose(fdest);
|
2004-07-16 12:31:10 +02:00
|
|
|
free(img.comps[compno].data);
|
2004-04-29 15:27:24 +02:00
|
|
|
}
|
2004-04-29 15:10:05 +02:00
|
|
|
}
|
2004-04-29 15:27:24 +02:00
|
|
|
break;
|
2005-01-26 09:59:49 +01:00
|
|
|
|
2004-04-29 15:27:24 +02:00
|
|
|
/* ------------------------ / */
|
|
|
|
/* / / */
|
|
|
|
/* / FORMAT : PGX / */
|
|
|
|
/* / / */
|
|
|
|
/* /----------------------- / */
|
2005-01-26 09:59:49 +01:00
|
|
|
case PGX_DFMT: /* PGX */
|
2004-07-13 16:37:11 +02:00
|
|
|
for (compno = 0; compno < img.numcomps; compno++) {
|
|
|
|
j2k_comp_t *comp = &img.comps[compno];
|
2004-04-29 15:27:24 +02:00
|
|
|
char name[256];
|
2004-07-20 07:40:55 +02:00
|
|
|
int nbytes = 0;
|
2005-01-26 09:59:49 +01:00
|
|
|
tmp = outfile;
|
|
|
|
while (*tmp) {
|
|
|
|
tmp++;
|
|
|
|
}
|
|
|
|
while (*tmp!='.') {
|
|
|
|
tmp--;
|
|
|
|
}
|
|
|
|
*tmp='\0';
|
2004-07-13 16:37:11 +02:00
|
|
|
//if (img.numcomps > 1)
|
2005-01-26 09:59:49 +01:00
|
|
|
sprintf(name, "%s-%d.pgx", outfile, compno);
|
|
|
|
|
2004-07-09 12:12:16 +02:00
|
|
|
//else
|
2005-01-26 09:59:49 +01:00
|
|
|
|
|
|
|
//sprintf(name, "%s.pgx", outfile);
|
|
|
|
|
|
|
|
fdest = fopen(name, "wb");
|
|
|
|
if (!fdest) {
|
|
|
|
fprintf(stderr, "ERROR -> failed to open %s for writing\n", name);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// w = int_ceildiv(img.x1 - img.x0, comp->dx);
|
|
|
|
// wr = int_ceildiv(int_ceildivpow2(img.x1 - img.x0,img.factor), comp->dx);
|
2004-07-13 16:37:11 +02:00
|
|
|
w = img.comps[compno].w;
|
2004-07-20 07:40:55 +02:00
|
|
|
wr = int_ceildivpow2(img.comps[compno].w, img.comps[compno].factor);
|
2005-01-26 09:59:49 +01:00
|
|
|
|
|
|
|
// h = int_ceildiv(img.y1 - img.y0, comp->dy);
|
|
|
|
// hr = int_ceildiv(int_ceildivpow2(img.y1 - img.y0,img.factor), comp->dy);
|
2004-07-13 16:37:11 +02:00
|
|
|
h = img.comps[compno].h;
|
2004-07-20 07:40:55 +02:00
|
|
|
hr = int_ceildivpow2(img.comps[compno].h, img.comps[compno].factor);
|
2005-01-26 09:59:49 +01:00
|
|
|
|
|
|
|
fprintf(fdest, "PG ML %c %d %d %d\n", comp->sgnd ? '-' : '+',
|
|
|
|
comp->prec, wr, hr);
|
|
|
|
|
2004-07-20 07:40:55 +02:00
|
|
|
if (comp->prec <= 8)
|
|
|
|
nbytes = 1;
|
2005-01-26 09:59:49 +01:00
|
|
|
|
2004-07-20 07:40:55 +02:00
|
|
|
else if (comp->prec <= 16)
|
|
|
|
nbytes = 2;
|
2005-01-26 09:59:49 +01:00
|
|
|
|
2004-07-20 07:40:55 +02:00
|
|
|
else
|
|
|
|
nbytes = 4;
|
2004-04-29 15:27:24 +02:00
|
|
|
for (i = 0; i < wr * hr; i++) {
|
2004-07-13 16:37:11 +02:00
|
|
|
int v = img.comps[compno].data[i / wr * w + i % wr];
|
2005-01-26 09:59:49 +01:00
|
|
|
|
2004-07-20 07:40:55 +02:00
|
|
|
for (j = nbytes - 1; j >= 0; j--) {
|
2005-01-26 09:59:49 +01:00
|
|
|
|
2004-07-20 07:40:55 +02:00
|
|
|
char byte = (char) (v >> (j * 8));
|
2005-01-26 09:59:49 +01:00
|
|
|
|
|
|
|
fwrite(&byte, 1, 1, fdest);
|
|
|
|
|
2003-11-27 11:07:31 +01:00
|
|
|
}
|
2004-04-29 15:27:24 +02:00
|
|
|
}
|
2004-07-16 12:31:10 +02:00
|
|
|
free(img.comps[compno].data);
|
2005-01-26 09:59:49 +01:00
|
|
|
fclose(fdest);
|
2004-04-29 15:27:24 +02:00
|
|
|
}
|
|
|
|
break;
|
2005-01-26 09:59:49 +01:00
|
|
|
|
2004-04-29 15:27:24 +02:00
|
|
|
/* ------------------------ / */
|
|
|
|
/* / / */
|
|
|
|
/* / FORMAT : BMP / */
|
|
|
|
/* / / */
|
|
|
|
/* /----------------------- / */
|
2005-01-26 09:59:49 +01:00
|
|
|
|
|
|
|
case BMP_DFMT: /* BMP */
|
2004-07-13 16:37:11 +02:00
|
|
|
if (img.numcomps == 3 && img.comps[0].dx == img.comps[1].dx
|
2005-01-26 09:59:49 +01:00
|
|
|
&& img.comps[1].dx == img.comps[2].dx
|
|
|
|
&& img.comps[0].dy == img.comps[1].dy
|
|
|
|
&& img.comps[1].dy == img.comps[2].dy
|
|
|
|
&& img.comps[0].prec == img.comps[1].prec
|
|
|
|
&& img.comps[1].prec == img.comps[2].prec) {
|
2004-04-29 15:27:24 +02:00
|
|
|
/* -->> -->> -->> -->>
|
2005-01-26 09:59:49 +01:00
|
|
|
|
|
|
|
24 bits color
|
|
|
|
|
|
|
|
<<-- <<-- <<-- <<-- */
|
|
|
|
|
|
|
|
fdest = fopen(outfile, "wb");
|
|
|
|
if (!fdest) {
|
|
|
|
fprintf(stderr, "ERROR -> failed to open %s for writing\n", outfile);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// w = int_ceildiv(img.x1 - img.x0, img.comps[0].dx);
|
|
|
|
// wr = int_ceildiv(int_ceildivpow2(img.x1 - img.x0,img.factor), img.comps[0].dx);
|
2004-07-13 16:37:11 +02:00
|
|
|
w = img.comps[0].w;
|
|
|
|
wr = int_ceildivpow2(img.comps[0].w, img.comps[0].factor);
|
2005-01-26 09:59:49 +01:00
|
|
|
|
|
|
|
// h = int_ceildiv(img.y1 - img.y0, img.comps[0].dy);
|
|
|
|
// hr = int_ceildiv(int_ceildivpow2(img.y1 - img.y0,img.factor), img.comps[0].dy);
|
2004-07-13 16:37:11 +02:00
|
|
|
h = img.comps[0].h;
|
|
|
|
hr = int_ceildivpow2(img.comps[0].h, img.comps[0].factor);
|
2005-01-26 09:59:49 +01:00
|
|
|
|
|
|
|
fprintf(fdest, "BM");
|
|
|
|
|
2004-04-29 15:27:24 +02:00
|
|
|
/* FILE HEADER */
|
|
|
|
/* ------------- */
|
2005-01-26 09:59:49 +01:00
|
|
|
fprintf(fdest, "%c%c%c%c",
|
|
|
|
(unsigned char) (hr * wr * 3 + 3 * hr * (wr % 2) +
|
|
|
|
54) & 0xff,
|
|
|
|
(unsigned char) ((hr * wr * 3 + 3 * hr * (wr % 2) + 54)
|
|
|
|
>> 8) & 0xff,
|
|
|
|
(unsigned char) ((hr * wr * 3 + 3 * hr * (wr % 2) + 54)
|
|
|
|
>> 16) & 0xff,
|
|
|
|
(unsigned char) ((hr * wr * 3 + 3 * hr * (wr % 2) + 54)
|
|
|
|
>> 24) & 0xff);
|
|
|
|
fprintf(fdest, "%c%c%c%c", (0) & 0xff, ((0) >> 8) & 0xff,
|
|
|
|
((0) >> 16) & 0xff, ((0) >> 24) & 0xff);
|
|
|
|
fprintf(fdest, "%c%c%c%c", (54) & 0xff, ((54) >> 8) & 0xff,
|
|
|
|
((54) >> 16) & 0xff, ((54) >> 24) & 0xff);
|
|
|
|
|
2004-04-29 15:27:24 +02:00
|
|
|
/* INFO HEADER */
|
|
|
|
/* ------------- */
|
2005-01-26 09:59:49 +01:00
|
|
|
fprintf(fdest, "%c%c%c%c", (40) & 0xff, ((40) >> 8) & 0xff,
|
|
|
|
((40) >> 16) & 0xff, ((40) >> 24) & 0xff);
|
|
|
|
fprintf(fdest, "%c%c%c%c", (unsigned char) ((wr) & 0xff),
|
|
|
|
(unsigned char) ((wr) >> 8) & 0xff,
|
|
|
|
(unsigned char) ((wr) >> 16) & 0xff,
|
|
|
|
(unsigned char) ((wr) >> 24) & 0xff);
|
|
|
|
fprintf(fdest, "%c%c%c%c", (unsigned char) ((hr) & 0xff),
|
|
|
|
(unsigned char) ((hr) >> 8) & 0xff,
|
|
|
|
(unsigned char) ((hr) >> 16) & 0xff,
|
|
|
|
(unsigned char) ((hr) >> 24) & 0xff);
|
|
|
|
fprintf(fdest, "%c%c", (1) & 0xff, ((1) >> 8) & 0xff);
|
|
|
|
fprintf(fdest, "%c%c", (24) & 0xff, ((24) >> 8) & 0xff);
|
|
|
|
fprintf(fdest, "%c%c%c%c", (0) & 0xff, ((0) >> 8) & 0xff,
|
|
|
|
((0) >> 16) & 0xff, ((0) >> 24) & 0xff);
|
|
|
|
fprintf(fdest, "%c%c%c%c",
|
|
|
|
(unsigned char) (3 * hr * wr +
|
|
|
|
3 * hr * (wr % 2)) & 0xff,
|
|
|
|
(unsigned char) ((hr * wr * 3 + 3 * hr * (wr % 2)) >>
|
|
|
|
8) & 0xff,
|
|
|
|
(unsigned char) ((hr * wr * 3 + 3 * hr * (wr % 2)) >>
|
|
|
|
16) & 0xff,
|
|
|
|
(unsigned char) ((hr * wr * 3 + 3 * hr * (wr % 2)) >>
|
|
|
|
24) & 0xff);
|
|
|
|
fprintf(fdest, "%c%c%c%c", (7834) & 0xff, ((7834) >> 8) & 0xff,
|
|
|
|
((7834) >> 16) & 0xff, ((7834) >> 24) & 0xff);
|
|
|
|
fprintf(fdest, "%c%c%c%c", (7834) & 0xff, ((7834) >> 8) & 0xff,
|
|
|
|
((7834) >> 16) & 0xff, ((7834) >> 24) & 0xff);
|
|
|
|
fprintf(fdest, "%c%c%c%c", (0) & 0xff, ((0) >> 8) & 0xff,
|
|
|
|
((0) >> 16) & 0xff, ((0) >> 24) & 0xff);
|
|
|
|
fprintf(fdest, "%c%c%c%c", (0) & 0xff, ((0) >> 8) & 0xff,
|
|
|
|
((0) >> 16) & 0xff, ((0) >> 24) & 0xff);
|
|
|
|
|
2004-04-29 15:27:24 +02:00
|
|
|
for (i = 0; i < wr * hr; i++) {
|
|
|
|
unsigned char R, G, B;
|
|
|
|
/* a modifier */
|
2004-07-13 16:37:11 +02:00
|
|
|
// R = img.comps[0].data[w * h - ((i) / (w) + 1) * w + (i) % (w)];
|
|
|
|
R = img.comps[0].data[w * hr - ((i) / (wr) + 1) * w + (i) % (wr)];
|
|
|
|
// G = img.comps[1].data[w * h - ((i) / (w) + 1) * w + (i) % (w)];
|
|
|
|
G = img.comps[1].data[w * hr - ((i) / (wr) + 1) * w + (i) % (wr)];
|
|
|
|
// B = img.comps[2].data[w * h - ((i) / (w) + 1) * w + (i) % (w)];
|
|
|
|
B = img.comps[2].data[w * hr - ((i) / (wr) + 1) * w + (i) % (wr)];
|
2005-01-26 09:59:49 +01:00
|
|
|
fprintf(fdest, "%c%c%c", B, G, R);
|
|
|
|
|
2004-04-29 15:27:24 +02:00
|
|
|
if ((i + 1) % wr == 0) {
|
|
|
|
for (pad = (3 * wr) % 4 ? 4 - (3 * wr) % 4 : 0; pad > 0; pad--) /* ADD */
|
2005-01-26 09:59:49 +01:00
|
|
|
fprintf(fdest, "%c", 0);
|
2003-11-27 11:07:31 +01:00
|
|
|
}
|
2004-04-29 15:27:24 +02:00
|
|
|
}
|
2005-01-26 09:59:49 +01:00
|
|
|
fclose(fdest);
|
2004-07-16 12:31:10 +02:00
|
|
|
free(img.comps[1].data);
|
|
|
|
free(img.comps[2].data);
|
2004-04-29 15:27:24 +02:00
|
|
|
} else { /* Gray-scale */
|
2005-01-26 09:59:49 +01:00
|
|
|
|
|
|
|
/* -->> -->> -->> -->>
|
|
|
|
|
|
|
|
8 bits non code (Gray scale)
|
|
|
|
|
|
|
|
<<-- <<-- <<-- <<-- */
|
|
|
|
fdest = fopen(argv[2], "wb");
|
|
|
|
// w = int_ceildiv(img.x1 - img.x0, img.comps[0].dx);
|
|
|
|
// wr = int_ceildiv(int_ceildivpow2(img.x1 - img.x0,img.factor), img.comps[0].dx);
|
2004-07-13 16:37:11 +02:00
|
|
|
w = img.comps[0].w;
|
|
|
|
wr = int_ceildivpow2(img.comps[0].w, img.comps[0].factor);
|
2005-01-26 09:59:49 +01:00
|
|
|
|
|
|
|
// h = int_ceildiv(img.y1 - img.y0, img.comps[0].dy);
|
|
|
|
// hr = int_ceildiv(int_ceildivpow2(img.y1 - img.y0,img.factor), img.comps[0].dy);
|
2004-07-13 16:37:11 +02:00
|
|
|
h = img.comps[0].h;
|
|
|
|
hr = int_ceildivpow2(img.comps[0].h, img.comps[0].factor);
|
2005-01-26 09:59:49 +01:00
|
|
|
|
|
|
|
fprintf(fdest, "BM");
|
|
|
|
|
2004-04-29 15:27:24 +02:00
|
|
|
/* FILE HEADER */
|
|
|
|
/* ------------- */
|
2005-01-26 09:59:49 +01:00
|
|
|
fprintf(fdest, "%c%c%c%c",
|
|
|
|
(unsigned char) (hr * wr + 54 + 1024 +
|
|
|
|
hr * (wr % 2)) & 0xff,
|
|
|
|
(unsigned char) ((hr * wr + 54 + 1024 + hr * (wr % 2))
|
|
|
|
>> 8) & 0xff,
|
|
|
|
(unsigned char) ((hr * wr + 54 + 1024 + hr * (wr % 2))
|
|
|
|
>> 16) & 0xff,
|
|
|
|
(unsigned char) ((hr * wr + 54 + 1024 + wr * (wr % 2))
|
|
|
|
>> 24) & 0xff);
|
|
|
|
fprintf(fdest, "%c%c%c%c", (0) & 0xff, ((0) >> 8) & 0xff,
|
|
|
|
((0) >> 16) & 0xff, ((0) >> 24) & 0xff);
|
|
|
|
fprintf(fdest, "%c%c%c%c", (54 + 1024) & 0xff,
|
|
|
|
((54 + 1024) >> 8) & 0xff, ((54 + 1024) >> 16) & 0xff,
|
|
|
|
((54 + 1024) >> 24) & 0xff);
|
|
|
|
|
2004-04-29 15:27:24 +02:00
|
|
|
/* INFO HEADER */
|
|
|
|
/* ------------- */
|
2005-01-26 09:59:49 +01:00
|
|
|
fprintf(fdest, "%c%c%c%c", (40) & 0xff, ((40) >> 8) & 0xff,
|
|
|
|
((40) >> 16) & 0xff, ((40) >> 24) & 0xff);
|
|
|
|
fprintf(fdest, "%c%c%c%c", (unsigned char) ((wr) & 0xff),
|
|
|
|
(unsigned char) ((wr) >> 8) & 0xff,
|
|
|
|
(unsigned char) ((wr) >> 16) & 0xff,
|
|
|
|
(unsigned char) ((wr) >> 24) & 0xff);
|
|
|
|
fprintf(fdest, "%c%c%c%c", (unsigned char) ((hr) & 0xff),
|
|
|
|
(unsigned char) ((hr) >> 8) & 0xff,
|
|
|
|
(unsigned char) ((hr) >> 16) & 0xff,
|
|
|
|
(unsigned char) ((hr) >> 24) & 0xff);
|
|
|
|
fprintf(fdest, "%c%c", (1) & 0xff, ((1) >> 8) & 0xff);
|
|
|
|
fprintf(fdest, "%c%c", (8) & 0xff, ((8) >> 8) & 0xff);
|
|
|
|
fprintf(fdest, "%c%c%c%c", (0) & 0xff, ((0) >> 8) & 0xff,
|
|
|
|
((0) >> 16) & 0xff, ((0) >> 24) & 0xff);
|
|
|
|
fprintf(fdest, "%c%c%c%c",
|
|
|
|
(unsigned char) (hr * wr + hr * (wr % 2)) & 0xff,
|
|
|
|
(unsigned char) ((hr * wr + hr * (wr % 2)) >> 8) &
|
|
|
|
0xff,
|
|
|
|
(unsigned char) ((hr * wr + hr * (wr % 2)) >> 16) &
|
|
|
|
0xff,
|
|
|
|
(unsigned char) ((hr * wr + hr * (wr % 2)) >> 24) & 0xff);
|
|
|
|
fprintf(fdest, "%c%c%c%c", (7834) & 0xff, ((7834) >> 8) & 0xff,
|
|
|
|
((7834) >> 16) & 0xff, ((7834) >> 24) & 0xff);
|
|
|
|
fprintf(fdest, "%c%c%c%c", (7834) & 0xff, ((7834) >> 8) & 0xff,
|
|
|
|
((7834) >> 16) & 0xff, ((7834) >> 24) & 0xff);
|
|
|
|
fprintf(fdest, "%c%c%c%c", (256) & 0xff, ((256) >> 8) & 0xff,
|
|
|
|
((256) >> 16) & 0xff, ((256) >> 24) & 0xff);
|
|
|
|
fprintf(fdest, "%c%c%c%c", (256) & 0xff, ((256) >> 8) & 0xff,
|
|
|
|
((256) >> 16) & 0xff, ((256) >> 24) & 0xff);
|
2004-04-29 15:27:24 +02:00
|
|
|
}
|
2005-01-26 09:59:49 +01:00
|
|
|
|
2004-04-29 15:27:24 +02:00
|
|
|
for (i = 0; i < 256; i++) {
|
2005-01-26 09:59:49 +01:00
|
|
|
fprintf(fdest, "%c%c%c%c", i, i, i, 0);
|
2004-04-29 15:27:24 +02:00
|
|
|
}
|
2005-01-26 09:59:49 +01:00
|
|
|
|
2004-04-29 15:27:24 +02:00
|
|
|
for (i = 0; i < wr * hr; i++) {
|
|
|
|
/* a modifier !! */
|
2005-01-26 09:59:49 +01:00
|
|
|
// fprintf(fdest, "%c", img.comps[0].data[w * h - ((i) / (w) + 1) * w + (i) % (w)]);
|
|
|
|
fprintf(fdest, "%c",
|
|
|
|
img.comps[0].data[w * hr - ((i) / (wr) + 1) * w +
|
|
|
|
(i) % (wr)]);
|
|
|
|
/*if (((i + 1) % w == 0 && w % 2))
|
|
|
|
fprintf(fdest, "%c", 0); */
|
2004-04-29 15:27:24 +02:00
|
|
|
if ((i + 1) % wr == 0) {
|
|
|
|
for (pad = wr % 4 ? 4 - wr % 4 : 0; pad > 0; pad--) /* ADD */
|
2005-01-26 09:59:49 +01:00
|
|
|
fprintf(fdest, "%c", 0);
|
2004-04-29 15:27:24 +02:00
|
|
|
}
|
2004-04-29 15:10:05 +02:00
|
|
|
}
|
2005-01-26 09:59:49 +01:00
|
|
|
fclose(fdest);
|
2004-07-16 12:31:10 +02:00
|
|
|
free(img.comps[0].data);
|
2004-04-29 15:27:24 +02:00
|
|
|
break;
|
2005-01-26 09:59:49 +01:00
|
|
|
|
2004-04-29 15:27:24 +02:00
|
|
|
default:
|
2005-01-26 09:59:49 +01:00
|
|
|
fprintf(stderr,
|
|
|
|
"ERROR -> j2k_to_image : Unknown output image format\n");
|
|
|
|
return 1;
|
2004-04-29 15:27:24 +02:00
|
|
|
break;
|
|
|
|
}
|
2005-01-26 09:59:49 +01:00
|
|
|
|
|
|
|
|
|
|
|
// Free remaining structures
|
|
|
|
//--------------------------
|
2004-08-06 16:13:51 +02:00
|
|
|
j2k_dec_release();
|
2005-01-26 09:59:49 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Check memory leaks if debug mode
|
|
|
|
//---------------------------------
|
|
|
|
|
|
|
|
#ifdef _DEBUG
|
|
|
|
|
|
|
|
_CrtDumpMemoryLeaks();
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2004-04-29 15:27:24 +02:00
|
|
|
return 0;
|
2003-11-27 11:07:31 +01:00
|
|
|
}
|