Fixed issues with Reading and Writing TIF images in convert.c to avoid segmentation...
[openjpeg.git] / codec / convert.c
index 48b9d18a55f647b0493eae23ce2debfb168f6518..5e9f49693f9520ee3171b2eb5326915f34de427d 100644 (file)
@@ -1,7 +1,11 @@
 /*
+ * Copyright (c) 2002-2007, Communications and Remote Sensing Laboratory, Universite catholique de Louvain (UCL), Belgium
+ * Copyright (c) 2002-2007, Professor Benoit Macq
  * Copyright (c) 2001-2003, David Janssens
  * Copyright (c) 2002-2003, Yannick Verschueren
- * Copyright (c) 2002-2003,  Communications and remote sensing Laboratory, Universite catholique de Louvain, Belgium
+ * Copyright (c) 2003-2007, Francois-Olivier Devaux and Antonin Descampe
+ * Copyright (c) 2005, Herve Drolon, FreeImage Team
+ * Copyright (c) 2006-2007, Parvatha Elangovan
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  * POSSIBILITY OF SUCH DAMAGE.
  */
-
-#include <openjpeg.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <math.h>
-#include <unistd.h>
 #include <string.h>
+#include "openjpeg.h"
+#include "../libs/libtiff/tiffio.h"
+#include "convert.h"
+
+/*
+ * Get logarithm of an integer and round downwards.
+ *
+ * log2(a)
+ */
+static int int_floorlog2(int a) {
+       int l;
+       for (l = 0; a > 1; l++) {
+               a >>= 1;
+       }
+       return l;
+}
+
+/*
+ * Divide an integer by a power of 2 and round upwards.
+ *
+ * a divided by 2^b
+ */
+static int int_ceildivpow2(int a, int b) {
+       return (a + (1 << b) - 1) >> b;
+}
+
+/*
+ * Divide an integer and round upwards.
+ *
+ * a divided by b
+ */
+static int int_ceildiv(int a, int b) {
+       return (a + b - 1) / b;
+}
+
+
+/* -->> -->> -->> -->>
+
+  TGA IMAGE FORMAT
+
+ <<-- <<-- <<-- <<-- */
+
+// TGA header definition.
+#pragma pack(push,1) // Pack structure byte aligned
+typedef struct tga_header
+{                           
+    uint8   id_length;              /* Image id field length    */
+    uint8   colour_map_type;        /* Colour map type          */
+    uint8   image_type;             /* Image type               */
+    /*
+    ** Colour map specification
+    */
+    uint16  colour_map_index;       /* First entry index        */
+    uint16  colour_map_length;      /* Colour map length        */
+    uint8   colour_map_entry_size;  /* Colour map entry size    */
+    /*
+    ** Image specification
+    */
+    uint16  x_origin;               /* x origin of image        */
+    uint16  y_origin;               /* u origin of image        */
+    uint16  image_width;            /* Image width              */
+    uint16  image_height;           /* Image height             */
+    uint8   pixel_depth;            /* Pixel depth              */
+    uint8   image_desc;             /* Image descriptor         */
+} tga_header;
+#pragma pack(pop) // Return to normal structure packing alignment.
+
+int tga_readheader(FILE *fp, int *bits_per_pixel, int *width, int *height, int *flip_image)
+{
+       int palette_size;
+       tga_header tga ;
+
+       if (!bits_per_pixel || !width || !height || !flip_image)
+               return 0;
+       
+       // Read TGA header
+       fread((uint8*)&tga, sizeof(tga_header), 1, fp);
+
+       *bits_per_pixel = tga.pixel_depth;
+       
+       *width  = tga.image_width;
+       *height = tga.image_height ;
+
+       // Ignore tga identifier, if present ...
+       if (tga.id_length)
+       {
+               uint8 *id = (uint8 *) malloc(tga.id_length);
+               fread(id, tga.id_length, 1, fp);
+               free(id);  
+       }
+
+       // Test for compressed formats ... not yet supported ...
+       // Note :-  9 - RLE encoded palettized.
+       //                 10 - RLE encoded RGB.
+       if (tga.image_type > 8)
+       {
+               fprintf(stderr, "Sorry, compressed tga files are not currently supported.\n");
+               return 0 ;
+       }
+
+       *flip_image = !(tga.image_desc & 32);
+
+       // Palettized formats are not yet supported, skip over the palette, if present ... 
+       palette_size = tga.colour_map_length * (tga.colour_map_entry_size/8);
+       
+       if (palette_size>0)
+       {
+               fprintf(stderr, "File contains a palette - not yet supported.");
+               fseek(fp, palette_size, SEEK_CUR);
+       }
+       return 1;
+}
+
+int tga_writeheader(FILE *fp, int bits_per_pixel, int width, int height, bool flip_image)
+{
+       tga_header tga;
+
+       if (!bits_per_pixel || !width || !height)
+               return 0;
+
+       memset(&tga, 0, sizeof(tga_header));
+
+       tga.pixel_depth = bits_per_pixel;
+       tga.image_width  = width;
+       tga.image_height = height;
+       tga.image_type = 2; // Uncompressed.
+       tga.image_desc = 8; // 8 bits per component.
+
+       if (flip_image)
+               tga.image_desc |= 32;
+
+       // Write TGA header
+       fwrite((uint8*)&tga, sizeof(tga_header), 1, fp);
+
+       return 1;
+}
+
+opj_image_t* tgatoimage(const char *filename, opj_cparameters_t *parameters) {
+       FILE *f;
+       opj_image_t *image;
+       uint32 image_width, image_height, pixel_bit_depth;
+       uint32 x, y;
+       int flip_image=0;
+       opj_image_cmptparm_t cmptparm[4];       /* maximum 4 components */
+       int numcomps;
+       OPJ_COLOR_SPACE color_space;
+       bool mono ;
+       bool save_alpha;
+       int subsampling_dx, subsampling_dy;
+       int i;  
+
+       f = fopen(filename, "rb");
+       if (!f) {
+               fprintf(stderr, "Failed to open %s for reading !!\n", filename);
+               return 0;
+       }
+
+       if (!tga_readheader(f, &pixel_bit_depth, &image_width, &image_height, &flip_image))
+               return NULL;
+
+       // We currently only support 24 & 32 bit tga's ...
+       if (!((pixel_bit_depth == 24) || (pixel_bit_depth == 32)))
+               return NULL;
+
+       /* initialize image components */   
+       memset(&cmptparm[0], 0, 4 * sizeof(opj_image_cmptparm_t));
+
+       mono = (pixel_bit_depth == 8) || (pixel_bit_depth == 16);  // Mono with & without alpha.
+       save_alpha = (pixel_bit_depth == 16) || (pixel_bit_depth == 32); // Mono with alpha, or RGB with alpha
+
+       if (mono) {
+               color_space = CLRSPC_GRAY;
+               numcomps = save_alpha ? 2 : 1;
+       }       
+       else {
+               numcomps = save_alpha ? 4 : 3;
+               color_space = CLRSPC_SRGB;
+       }
+
+       subsampling_dx = parameters->subsampling_dx;
+       subsampling_dy = parameters->subsampling_dy;
+
+       for (i = 0; i < numcomps; i++) {
+               cmptparm[i].prec = 8;
+               cmptparm[i].bpp = 8;
+               cmptparm[i].sgnd = 0;
+               cmptparm[i].dx = subsampling_dx;
+               cmptparm[i].dy = subsampling_dy;
+               cmptparm[i].w = image_width;
+               cmptparm[i].h = image_height;
+       }
+
+       /* create the image */
+       image = opj_image_create(numcomps, &cmptparm[0], color_space);
+
+       if (!image)
+               return NULL;
+
+       /* set image offset and reference grid */
+       image->x0 = parameters->image_offset_x0;
+       image->y0 = parameters->image_offset_y0;
+       image->x1 =     !image->x0 ? (image_width - 1) * subsampling_dx + 1 : image->x0 + (image_width - 1) * subsampling_dx + 1;
+       image->y1 =     !image->y0 ? (image_height - 1) * subsampling_dy + 1 : image->y0 + (image_height - 1) * subsampling_dy + 1;
+
+       /* set image data */
+       for (y=0; y < image_height; y++) 
+       {
+               int index;
+
+               if (flip_image)
+                       index = (image_height-y-1)*image_width;
+               else
+                       index = y*image_width;
+
+               if (numcomps==3)
+               {
+                       for (x=0;x<image_width;x++) 
+                       {
+                               uint8 r,g,b;
+                               fread(&b, 1, 1, f);
+                               fread(&g, 1, 1, f);
+                               fread(&r, 1, 1, f);
+
+                               image->comps[0].data[index]=r;
+                               image->comps[1].data[index]=g;
+                               image->comps[2].data[index]=b;
+                               index++;
+                       }
+               }
+               else if (numcomps==4)
+               {
+                       for (x=0;x<image_width;x++) 
+                       {
+                               uint8 r,g,b,a;
+                               fread(&b, 1, 1, f);
+                               fread(&g, 1, 1, f);
+                               fread(&r, 1, 1, f);
+                               fread(&a, 1, 1, f);
+
+                               image->comps[0].data[index]=r;
+                               image->comps[1].data[index]=g;
+                               image->comps[2].data[index]=b;
+                               image->comps[3].data[index]=a;
+                               index++;
+                       }
+               }
+               else {
+                       fprintf(stderr, "Currently unsupported bit depth : %s\n", filename);
+               }
+       }       
+       return image;
+}
+
+int imagetotga(opj_image_t * image, const char *outfile) {
+       int width, height, bpp, x, y;
+       bool write_alpha;
+       int i;
+       uint32 alpha_channel;
+       float r,g,b,a;
+       uint8 value;
+       float scale;
+       FILE *fdest;
+
+       fdest = fopen(outfile, "wb");
+       if (!fdest) {
+               fprintf(stderr, "ERROR -> failed to open %s for writing\n", outfile);
+               return 1;
+       }
+
+       for (i = 0; i < image->numcomps-1; i++) {
+               if ((image->comps[0].dx != image->comps[i+1].dx) 
+                       ||(image->comps[0].dy != image->comps[i+1].dy) 
+                       ||(image->comps[0].prec != image->comps[i+1].prec))     {
+      fprintf(stderr, "Unable to create a tga file with such J2K image charateristics.");
+      return 1;
+   }
+       }
+
+       width  = int_ceildiv(image->x1-image->x0, image->comps[0].dx);
+       height = int_ceildiv(image->y1-image->y0, image->comps[0].dy);
+
+       // Mono with alpha, or RGB with alpha.
+       write_alpha = (image->numcomps==2) || (image->numcomps==4);   
+
+       // Write TGA header 
+       bpp = write_alpha ? 32 : 24;
+       if (!tga_writeheader(fdest, bpp, width, height, true))
+               return 1;
+
+       alpha_channel = image->numcomps-1; 
+
+       scale = 255.0f / (float)((1<<image->comps[0].prec)-1);
+
+       for (y=0; y < height; y++) {
+               uint32 index=y*width;
+
+               for (x=0; x < width; x++, index++)      {
+                       r = (float)(image->comps[0].data[index]);
+
+                       if (image->numcomps>2) {
+                               g = (float)(image->comps[1].data[index]);
+                               b = (float)(image->comps[2].data[index]);
+                       }
+                       else  {// Greyscale ...
+                               g = r;
+                               b = r;
+                       }
+
+                       // TGA format writes BGR ...
+                       value = (uint8)(b*scale);
+                       fwrite(&value,1,1,fdest);
+
+                       value = (uint8)(g*scale);
+                       fwrite(&value,1,1,fdest);
+
+                       value = (uint8)(r*scale);
+                       fwrite(&value,1,1,fdest);
+
+                       if (write_alpha) {
+                               a = (float)(image->comps[alpha_channel].data[index]);
+                               value = (uint8)(a*scale);
+                               fwrite(&value,1,1,fdest);
+                       }
+               }
+       }
+
+       return 0;
+}
 
 /* -->> -->> -->> -->>
 
 
  <<-- <<-- <<-- <<-- */
 
-/* UINT2 defines a two byte word */
-typedef unsigned short int UINT2;
+/* WORD defines a two byte word */
+typedef unsigned short int WORD;
 
-/* UINT4 defines a four byte word */
-typedef unsigned long int UINT4;
+/* DWORD defines a four byte word */
+typedef unsigned long int DWORD;
 
 typedef struct {
-       UINT2 bfType;                                   /* 'BM' for Bitmap (19776) */
-       UINT4 bfSize;                                   /* Size of the file        */
-       UINT2 bfReserved1;                              /* Reserved : 0            */
-       UINT2 bfReserved2;                              /* Reserved : 0            */
-       UINT4 bfOffBits;                                /* Offset                  */
+  WORD bfType;                 /* 'BM' for Bitmap (19776) */
+  DWORD bfSize;                        /* Size of the file        */
+  WORD bfReserved1;            /* Reserved : 0            */
+  WORD bfReserved2;            /* Reserved : 0            */
+  DWORD bfOffBits;             /* Offset                  */
 } BITMAPFILEHEADER_t;
 
 typedef struct {
-       UINT4 biSize;                                   /* Size of the structure in bytes */
-       UINT4 biWidth;                                  /* Width of the image in pixels */
-       UINT4 biHeight;                                 /* Heigth of the image in pixels */
-       UINT2 biPlanes;                                 /* 1 */
-       UINT2 biBitCount;                               /* Number of color bits by pixels */
-       UINT4 biCompression;                            /* Type of encoding 0: none 1: RLE8 2: RLE4 */
-       UINT4 biSizeImage;                              /* Size of the image in bytes */
-       UINT4 biXpelsPerMeter;                          /* Horizontal (X) resolution in pixels/meter */
-       UINT4 biYpelsPerMeter;                          /* Vertical (Y) resolution in pixels/meter */
-       UINT4 biClrUsed;                                /* Number of color used in the image (0: ALL) */
-       UINT4 biClrImportant;                           /* Number of important color (0: ALL) */
+  DWORD biSize;                        /* Size of the structure in bytes */
+  DWORD biWidth;               /* Width of the image in pixels */
+  DWORD biHeight;              /* Heigth of the image in pixels */
+  WORD biPlanes;               /* 1 */
+  WORD biBitCount;             /* Number of color bits by pixels */
+  DWORD biCompression;         /* Type of encoding 0: none 1: RLE8 2: RLE4 */
+  DWORD biSizeImage;           /* Size of the image in bytes */
+  DWORD biXpelsPerMeter;       /* Horizontal (X) resolution in pixels/meter */
+  DWORD biYpelsPerMeter;       /* Vertical (Y) resolution in pixels/meter */
+  DWORD biClrUsed;             /* Number of color used in the image (0: ALL) */
+  DWORD biClrImportant;                /* Number of important color (0: ALL) */
 } BITMAPINFOHEADER_t;
 
-int bmptoimage(char *filename, j2k_image_t * img, int subsampling_dx, int subsampling_dy, int Dim[2])
-{
+opj_image_t* bmptoimage(const char *filename, opj_cparameters_t *parameters) {
+       int subsampling_dx = parameters->subsampling_dx;
+       int subsampling_dy = parameters->subsampling_dy;
+
+       int i, numcomps, w, h;
+       OPJ_COLOR_SPACE color_space;
+       opj_image_cmptparm_t cmptparm[3];       /* maximum of 3 components */
+       opj_image_t * image = NULL;
+
        FILE *IN;
-       FILE *Compo0 = NULL, *Compo1 = NULL, *Compo2 = NULL;
        BITMAPFILEHEADER_t File_h;
        BITMAPINFOHEADER_t Info_h;
        unsigned char *RGB;
        unsigned char *table_R, *table_G, *table_B;
-       int i, w, h, PAD, type = 0;
-       int gray_scale = 1, not_end_file = 1, line = 0, col = 0;
-       unsigned char v, v2;
-       UINT4 W, H;
+       unsigned int j, PAD = 0;
+
+       int x, y, index;
+       int gray_scale = 1, not_end_file = 1; 
 
+       unsigned int line = 0, col = 0;
+       unsigned char v, v2;
+       DWORD W, H;
+  
        IN = fopen(filename, "rb");
        if (!IN) {
-               fprintf(stderr, "\033[0;33mFailed to open %s for reading !!\033[0;39m\n", filename);
+               fprintf(stderr, "Failed to open %s for reading !!\n", filename);
                return 0;
        }
-
+       
        File_h.bfType = getc(IN);
        File_h.bfType = (getc(IN) << 8) + File_h.bfType;
-
+       
        if (File_h.bfType != 19778) {
-               printf("Error, not a BMP file!\n");
+               fprintf(stderr,"Error, not a BMP file!\n");
                return 0;
        } else {
                /* FILE HEADER */
@@ -168,224 +506,193 @@ int bmptoimage(char *filename, j2k_image_t * img, int subsampling_dx, int subsam
                Info_h.biClrImportant = (getc(IN) << 24) + Info_h.biClrImportant;
 
                /* Read the data and store them in the OUT file */
-
+    
                if (Info_h.biBitCount == 24) {
-                       img->x0 = Dim[0];
-                       img->y0 = Dim[1];
-                       img->x1 = !Dim[0] ? (w - 1) * subsampling_dx + 1 : Dim[0] + (w - 1) * subsampling_dx + 1;
-                       img->y1 = !Dim[1] ? (h - 1) * subsampling_dy + 1 : Dim[1] + (h - 1) * subsampling_dy + 1;
-                       img->numcomps = 3;
-                       img->comps = (j2k_comp_t *) malloc(img->numcomps * sizeof(j2k_comp_t));
-                       for (i = 0; i < img->numcomps; i++) {
-                               img->comps[i].prec = 8;
-                               img->comps[i].bpp = 8;
-                               img->comps[i].sgnd = 0;
-                               img->comps[i].dx = subsampling_dx;
-                               img->comps[i].dy = subsampling_dy;
-                       }
-                       Compo0 = fopen("Compo0", "wb");
-                       if (!Compo0) {
-                               fprintf(stderr, "\033[0;33mFailed to open Compo0 for writing !\033[0;39m\n");
-                       }
-                       Compo1 = fopen("Compo1", "wb");
-                       if (!Compo1) {
-                               fprintf(stderr, "\033[0;33mFailed to open Compo1 for writing !\033[0;39m\n");
-                       }
-                       Compo2 = fopen("Compo2", "wb");
-                       if (!Compo2) {
-                               fprintf(stderr, "\033[0;33mFailed to open Compo2 for writing !\033[0;39m\n");
+                       numcomps = 3;
+                       color_space = CLRSPC_SRGB;
+                       /* initialize image components */
+                       memset(&cmptparm[0], 0, 3 * sizeof(opj_image_cmptparm_t));
+                       for(i = 0; i < numcomps; i++) {
+                               cmptparm[i].prec = 8;
+                               cmptparm[i].bpp = 8;
+                               cmptparm[i].sgnd = 0;
+                               cmptparm[i].dx = subsampling_dx;
+                               cmptparm[i].dy = subsampling_dy;
+                               cmptparm[i].w = w;
+                               cmptparm[i].h = h;
                        }
+                       /* create the image */
+                       image = opj_image_create(numcomps, &cmptparm[0], color_space);
+                       if(!image) {
+                               fclose(IN);
+                               return NULL;
+                       }
+
+                       /* set image offset and reference grid */
+                       image->x0 = parameters->image_offset_x0;
+                       image->y0 = parameters->image_offset_y0;
+                       image->x1 =     !image->x0 ? (w - 1) * subsampling_dx + 1 : image->x0 + (w - 1) * subsampling_dx + 1;
+                       image->y1 =     !image->y0 ? (h - 1) * subsampling_dy + 1 : image->y0 + (h - 1) * subsampling_dy + 1;
+
+                       /* set image data */
 
                        /* Place the cursor at the beginning of the image information */
                        fseek(IN, 0, SEEK_SET);
                        fseek(IN, File_h.bfOffBits, SEEK_SET);
-
+                       
                        W = Info_h.biWidth;
                        H = Info_h.biHeight;
 
-                       PAD = 4 - (3 * W) % 4;
+                       /* PAD = 4 - (3 * W) % 4; */
+                       /* PAD = (PAD == 4) ? 0 : PAD; */
+                       PAD = (3 * W) % 4 ? 4 - (3 * W) % 4 : 0;
                        
                        RGB = (unsigned char *) malloc((3 * W + PAD) * H * sizeof(unsigned char));
-
+                       
                        fread(RGB, sizeof(unsigned char), (3 * W + PAD) * H, IN);
                        
-                       for (i = 0; i < (3 * W + PAD) * H; i++)
-                         {
-                           unsigned char elmt;
-                           int Wp = 3 * W + PAD;
-                           
-                           elmt = RGB[(H - (i/Wp + 1)) * Wp + i % Wp];
-                           if ((i % Wp) < (3 * W))
-                             {
-                               switch (type)
-                                 {
-                                 case 0:
-                                   fprintf(Compo2, "%c", elmt);
-                                   type = 1;
-                                   break;
-                                 case 1:
-                                   fprintf(Compo1, "%c", elmt);
-                                   type = 2;
-                                   break;
-                                 case 2:
-                                   fprintf(Compo0, "%c", elmt);
-                                   type = 0;
-                                   break;
-                                 }
-                             }
-                         }
-
-                       fclose(Compo0);
-                       fclose(Compo1);
-                       fclose(Compo2);
+                       index = 0;
+
+                       for(y = 0; y < (int)H; y++) {
+                               unsigned char *scanline = RGB + (3 * W + PAD) * (H - 1 - y);
+                               for(x = 0; x < (int)W; x++) {
+                                       unsigned char *pixel = &scanline[3 * x];
+                                       image->comps[0].data[index] = pixel[2]; /* R */
+                                       image->comps[1].data[index] = pixel[1]; /* G */
+                                       image->comps[2].data[index] = pixel[0]; /* B */
+                                       index++;
+                               }
+                       }
+
                        free(RGB);
-               } else if (Info_h.biBitCount == 8 && Info_h.biCompression == 0) {
-                       img->x0 = Dim[0];
-                       img->y0 = Dim[1];
-                       img->x1 = !Dim[0] ? (w - 1) * subsampling_dx + 1 : Dim[0] + (w - 1) * subsampling_dx + 1;
-                       img->y1 = !Dim[1] ? (h - 1) * subsampling_dy + 1 : Dim[1] + (h - 1) * subsampling_dy + 1;
 
+               } else if (Info_h.biBitCount == 8 && Info_h.biCompression == 0) {
                        table_R = (unsigned char *) malloc(256 * sizeof(unsigned char));
                        table_G = (unsigned char *) malloc(256 * sizeof(unsigned char));
                        table_B = (unsigned char *) malloc(256 * sizeof(unsigned char));
-
-                       for (i = 0; i < Info_h.biClrUsed; i++) {
-                               table_B[i] = getc(IN);
-                               table_G[i] = getc(IN);
-                               table_R[i] = getc(IN);
+                       
+                       for (j = 0; j < Info_h.biClrUsed; j++) {
+                               table_B[j] = getc(IN);
+                               table_G[j] = getc(IN);
+                               table_R[j] = getc(IN);
                                getc(IN);
-                               if (table_R[i] != table_G[i] && table_R[i] != table_B[i] && table_G[i] != table_B[i])
+                               if (table_R[j] != table_G[j] && table_R[j] != table_B[j] && table_G[j] != table_B[j])
                                        gray_scale = 0;
                        }
-
+                       
                        /* Place the cursor at the beginning of the image information */
                        fseek(IN, 0, SEEK_SET);
                        fseek(IN, File_h.bfOffBits, SEEK_SET);
-
+                       
                        W = Info_h.biWidth;
                        H = Info_h.biHeight;
                        if (Info_h.biWidth % 2)
                                W++;
+                       
+                       numcomps = gray_scale ? 1 : 3;
+                       color_space = gray_scale ? CLRSPC_GRAY : CLRSPC_SRGB;
+                       /* initialize image components */
+                       memset(&cmptparm[0], 0, 3 * sizeof(opj_image_cmptparm_t));
+                       for(i = 0; i < numcomps; i++) {
+                               cmptparm[i].prec = 8;
+                               cmptparm[i].bpp = 8;
+                               cmptparm[i].sgnd = 0;
+                               cmptparm[i].dx = subsampling_dx;
+                               cmptparm[i].dy = subsampling_dy;
+                               cmptparm[i].w = w;
+                               cmptparm[i].h = h;
+                       }
+                       /* create the image */
+                       image = opj_image_create(numcomps, &cmptparm[0], color_space);
+                       if(!image) {
+                               fclose(IN);
+                               return NULL;
+                       }
 
-                       RGB = (unsigned char *) malloc(W * H * sizeof(unsigned char));
+                       /* set image offset and reference grid */
+                       image->x0 = parameters->image_offset_x0;
+                       image->y0 = parameters->image_offset_y0;
+                       image->x1 =     !image->x0 ? (w - 1) * subsampling_dx + 1 : image->x0 + (w - 1) * subsampling_dx + 1;
+                       image->y1 =     !image->y0 ? (h - 1) * subsampling_dy + 1 : image->y0 + (h - 1) * subsampling_dy + 1;
+
+                       /* set image data */
 
+                       RGB = (unsigned char *) malloc(W * H * sizeof(unsigned char));
+                       
                        fread(RGB, sizeof(unsigned char), W * H, IN);
                        if (gray_scale) {
-                               img->numcomps = 1;
-                               img->comps = (j2k_comp_t *) malloc(img->numcomps * sizeof(j2k_comp_t));
-                               img->comps[0].prec = 8;
-                               img->comps[0].bpp = 8;
-                               img->comps[0].sgnd = 0;
-                               img->comps[0].dx = subsampling_dx;
-                               img->comps[0].dy = subsampling_dy;
-                               Compo0 = fopen("Compo0", "wb");
-                               if (!Compo0) {
-                                       fprintf(stderr, "\033[0;33mFailed to open Compo0 for writing !\033[0;39m\n");
-                               }
-                               for (i = 0; i < W * H; i++) {
-                                       if ((i % W < W - 1 && Info_h.biWidth % 2) || !(Info_h.biWidth % 2))
-                                               fprintf(Compo0, "%c", table_R[RGB[W * H - ((i) / (W) + 1) * W + (i) % (W)]]);
-                               }
-                               fclose(Compo0);
-                       } else {
-                               img->numcomps = 3;
-                               img->comps = (j2k_comp_t *) malloc(img->numcomps * sizeof(j2k_comp_t));
-                               for (i = 0; i < img->numcomps; i++) {
-                                       img->comps[i].prec = 8;
-                                       img->comps[i].bpp = 8;
-                                       img->comps[i].sgnd = 0;
-                                       img->comps[i].dx = subsampling_dx;
-                                       img->comps[i].dy = subsampling_dy;
-                               }
-
-                               Compo0 = fopen("Compo0", "wb");
-                               if (!Compo0) {
-                                       fprintf(stderr, "\033[0;33mFailed to open Compo0 for writing !\033[0;39m\n");
-                               }
-                               Compo1 = fopen("Compo1", "wb");
-                               if (!Compo1) {
-                                       fprintf(stderr, "\033[0;33mFailed to open Compo1 for writing !\033[0;39m\n");
-                               }
-                               Compo2 = fopen("Compo2", "wb");
-                               if (!Compo2) {
-                                       fprintf(stderr, "\033[0;33mFailed to open Compo2 for writing !\033[0;39m\n");
+                               index = 0;
+                               for (j = 0; j < W * H; j++) {
+                                       if ((j % W < W - 1 && Info_h.biWidth % 2) || !(Info_h.biWidth % 2)) {
+                                               image->comps[0].data[index] = table_R[RGB[W * H - ((j) / (W) + 1) * W + (j) % (W)]];
+                                               index++;
+                                       }
                                }
 
-                               for (i = 0; i < W * H; i++) {
-                                       if ((i % W < W - 1 && Info_h.biWidth % 2) || !(Info_h.biWidth % 2)) {
-                                               fprintf(Compo0, "%c", table_R[RGB[W * H - ((i) / (W) + 1) * W + (i) % (W)]]);
-                                               fprintf(Compo1, "%c", table_G[RGB[W * H - ((i) / (W) + 1) * W + (i) % (W)]]);
-                                               fprintf(Compo2, "%c", table_B[RGB[W * H - ((i) / (W) + 1) * W + (i) % (W)]]);
+                       } else {                
+                               index = 0;
+                               for (j = 0; j < W * H; j++) {
+                                       if ((j % W < W - 1 && Info_h.biWidth % 2) || !(Info_h.biWidth % 2)) {
+                                               unsigned char pixel_index = RGB[W * H - ((j) / (W) + 1) * W + (j) % (W)];
+                                               image->comps[0].data[index] = table_R[pixel_index];
+                                               image->comps[1].data[index] = table_G[pixel_index];
+                                               image->comps[2].data[index] = table_B[pixel_index];
+                                               index++;
                                        }
-
                                }
-                               fclose(Compo0);
-                               fclose(Compo1);
-                               fclose(Compo2);
                        }
                        free(RGB);
-
-               } else if (Info_h.biBitCount == 8 && Info_h.biCompression == 1) {
-                       img->x0 = Dim[0];
-                       img->y0 = Dim[1];
-                       img->x1 = !Dim[0] ? (w - 1) * subsampling_dx + 1 : Dim[0] + (w - 1) * subsampling_dx + 1;
-                       img->y1 = !Dim[1] ? (h - 1) * subsampling_dy + 1 : Dim[1] + (h - 1) * subsampling_dy + 1;
-
+      free(table_R);
+      free(table_G);
+      free(table_B);
+               } else if (Info_h.biBitCount == 8 && Info_h.biCompression == 1) {                               
                        table_R = (unsigned char *) malloc(256 * sizeof(unsigned char));
                        table_G = (unsigned char *) malloc(256 * sizeof(unsigned char));
                        table_B = (unsigned char *) malloc(256 * sizeof(unsigned char));
-
-                       for (i = 0; i < Info_h.biClrUsed; i++) {
-                               table_B[i] = getc(IN);
-                               table_G[i] = getc(IN);
-                               table_R[i] = getc(IN);
+                       
+                       for (j = 0; j < Info_h.biClrUsed; j++) {
+                               table_B[j] = getc(IN);
+                               table_G[j] = getc(IN);
+                               table_R[j] = getc(IN);
                                getc(IN);
-                               if (table_R[i] != table_G[i] && table_R[i] != table_B[i] && table_G[i] != table_B[i])
+                               if (table_R[j] != table_G[j] && table_R[j] != table_B[j] && table_G[j] != table_B[j])
                                        gray_scale = 0;
                        }
 
+                       numcomps = gray_scale ? 1 : 3;
+                       color_space = gray_scale ? CLRSPC_GRAY : CLRSPC_SRGB;
+                       /* initialize image components */
+                       memset(&cmptparm[0], 0, 3 * sizeof(opj_image_cmptparm_t));
+                       for(i = 0; i < numcomps; i++) {
+                               cmptparm[i].prec = 8;
+                               cmptparm[i].bpp = 8;
+                               cmptparm[i].sgnd = 0;
+                               cmptparm[i].dx = subsampling_dx;
+                               cmptparm[i].dy = subsampling_dy;
+                               cmptparm[i].w = w;
+                               cmptparm[i].h = h;
+                       }
+                       /* create the image */
+                       image = opj_image_create(numcomps, &cmptparm[0], color_space);
+                       if(!image) {
+                               fclose(IN);
+                               return NULL;
+                       }
+
+                       /* set image offset and reference grid */
+                       image->x0 = parameters->image_offset_x0;
+                       image->y0 = parameters->image_offset_y0;
+                       image->x1 =     !image->x0 ? (w - 1) * subsampling_dx + 1 : image->x0 + (w - 1) * subsampling_dx + 1;
+                       image->y1 =     !image->y0 ? (h - 1) * subsampling_dy + 1 : image->y0 + (h - 1) * subsampling_dy + 1;
+
+                       /* set image data */
+                       
                        /* Place the cursor at the beginning of the image information */
                        fseek(IN, 0, SEEK_SET);
                        fseek(IN, File_h.bfOffBits, SEEK_SET);
-
-                       if (gray_scale) {
-                               img->numcomps = 1;
-                               img->comps = (j2k_comp_t *) malloc(sizeof(j2k_comp_t));
-                               img->comps[0].prec = 8;
-                               img->comps[0].bpp = 8;
-                               img->comps[0].sgnd = 0;
-                               img->comps[0].dx = subsampling_dx;
-                               img->comps[0].dy = subsampling_dy;
-                               Compo0 = fopen("Compo0", "wb");
-                               if (!Compo0) {
-                                       fprintf(stderr, "\033[0;33mFailed to open Compo0 for writing !\033[0;39m\n");
-                               }
-                       } else {
-                               img->numcomps = 3;
-                               img->comps = (j2k_comp_t *) malloc(img->numcomps * sizeof(j2k_comp_t));
-                               for (i = 0; i < img->numcomps; i++) {
-                                       img->comps[i].prec = 8;
-                                       img->comps[i].bpp = 8;
-                                       img->comps[i].sgnd = 0;
-                                       img->comps[i].dx = subsampling_dx;
-                                       img->comps[i].dy = subsampling_dy;
-                               }
-                               Compo0 = fopen("Compo0", "wb");
-                               if (!Compo0) {
-                                       fprintf(stderr, "\033[0;33mFailed to open Compo0 for writing !\033[0;39m\n");
-                               }
-                               Compo1 = fopen("Compo1", "wb");
-                               if (!Compo1) {
-                                       fprintf(stderr, "\033[0;33mFailed to open Compo1 for writing !\033[0;39m\n");
-                               }
-                               Compo2 = fopen("Compo2", "wb");
-                               if (!Compo2) {
-                                       fprintf(stderr, "\033[0;33mFailed to open Compo2 for writing !\033[0;39m\n");
-                               }
-                       }
-
+                       
                        RGB = (unsigned char *) malloc(Info_h.biWidth * Info_h.biHeight * sizeof(unsigned char));
-
+            
                        while (not_end_file) {
                                v = getc(IN);
                                if (v) {
@@ -397,231 +704,483 @@ int bmptoimage(char *filename, j2k_image_t * img, int subsampling_dx, int subsam
                                } else {
                                        v = getc(IN);
                                        switch (v) {
-                                       case 0:
-                                               col = 0;
-                                               line++;
-                                               break;
-                                       case 1:
-                                               line++;
-                                               not_end_file = 0;
-                                               break;
-                                       case 2:
-                                               printf("No Delta supported\n");
-                                               return 1;
-                                               break;
-                                       default:
-                                               for (i = 0; i < v; i++) {
-                                                       v2 = getc(IN);
-                                                       RGB[line * Info_h.biWidth + col] = v2;
-                                                       col++;
-                                               }
-                                               if (v % 2)
-                                                       v2 = getc(IN);
+                                               case 0:
+                                                       col = 0;
+                                                       line++;
+                                                       break;
+                                               case 1:
+                                                       line++;
+                                                       not_end_file = 0;
+                                                       break;
+                                               case 2:
+                                                       fprintf(stderr,"No Delta supported\n");
+                                                       opj_image_destroy(image);
+                                                       fclose(IN);
+                                                       return NULL;
+                                               default:
+                                                       for (i = 0; i < v; i++) {
+                                                               v2 = getc(IN);
+                                                               RGB[line * Info_h.biWidth + col] = v2;
+                                                               col++;
+                                                       }
+                                                       if (v % 2)
+                                                               v2 = getc(IN);
+                                                       break;
                                        }
                                }
                        }
                        if (gray_scale) {
-                               for (line = 0; line < Info_h.biHeight; line++)
-                                       for (col = 0; col < Info_h.biWidth; col++)
-                                               fprintf(Compo0, "%c", table_R[(int)RGB[(Info_h.biHeight - line - 1) * Info_h.biWidth + col]]);
-                               fclose(Compo0);
+                               index = 0;
+                               for (line = 0; line < Info_h.biHeight; line++) {
+                                       for (col = 0; col < Info_h.biWidth; col++) {
+                                               image->comps[0].data[index] = table_R[(int)RGB[(Info_h.biHeight - line - 1) * Info_h.biWidth + col]];
+                                               index++;
+                                       }
+                               }
                        } else {
-                               for (line = 0; line < Info_h.biHeight; line++)
+                               index = 0;
+                               for (line = 0; line < Info_h.biHeight; line++) {
                                        for (col = 0; col < Info_h.biWidth; col++) {
-                                               fprintf(Compo0, "%c", table_R[(int)RGB[(Info_h.biHeight - line - 1) * Info_h.biWidth + col]]);
-                                               fprintf(Compo1, "%c", table_G[(int)RGB[(Info_h.biHeight - line - 1) * Info_h.biWidth + col]]);
-                                               fprintf(Compo2, "%c", table_B[(int)RGB[(Info_h.biHeight - line - 1) * Info_h.biWidth + col]]);
+                                               unsigned char pixel_index = (int)RGB[(Info_h.biHeight - line - 1) * Info_h.biWidth + col];
+                                               image->comps[0].data[index] = table_R[pixel_index];
+                                               image->comps[1].data[index] = table_G[pixel_index];
+                                               image->comps[2].data[index] = table_B[pixel_index];
+                                               index++;
                                        }
-                               fclose(Compo0);
-                               fclose(Compo1);
-                               fclose(Compo2);
+                               }
                        }
                        free(RGB);
-               } else
-                       fprintf(stderr,"Other system than 24 bits/pixels or 8 bits (no RLE coding) is not yet implemented [%d]\n",
-                               Info_h.biBitCount);
+      free(table_R);
+      free(table_G);
+      free(table_B);
+       } else {
+               fprintf(stderr, 
+                       "Other system than 24 bits/pixels or 8 bits (no RLE coding) is not yet implemented [%d]\n", Info_h.biBitCount);
+       }
+       fclose(IN);
+ }
+ return image;
+}
 
-               fclose(IN);
-               return 1;
+int imagetobmp(opj_image_t * image, const char *outfile) {
+       int w, wr, h, hr;
+       int i, pad;
+       FILE *fdest = NULL;
+       int adjustR, adjustG, adjustB;
+
+       if (image->numcomps == 3 && image->comps[0].dx == image->comps[1].dx
+               && image->comps[1].dx == image->comps[2].dx
+               && image->comps[0].dy == image->comps[1].dy
+               && image->comps[1].dy == image->comps[2].dy
+               && image->comps[0].prec == image->comps[1].prec
+               && image->comps[1].prec == image->comps[2].prec) {
+               
+               /* -->> -->> -->> -->>    
+               24 bits color       
+               <<-- <<-- <<-- <<-- */
+           
+               fdest = fopen(outfile, "wb");
+               if (!fdest) {
+                       fprintf(stderr, "ERROR -> failed to open %s for writing\n", outfile);
+                       return 1;
+               }
+           
+               w = image->comps[0].w;
+               wr = int_ceildivpow2(image->comps[0].w, image->comps[0].factor);
+           
+               h = image->comps[0].h;
+               hr = int_ceildivpow2(image->comps[0].h, image->comps[0].factor);
+           
+               fprintf(fdest, "BM");
+           
+               /* FILE HEADER */
+               /* ------------- */
+               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);
+           
+               /* INFO HEADER   */
+               /* ------------- */
+               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);
+           
+               if (image->comps[0].prec > 8) {
+                       adjustR = image->comps[0].prec - 8;
+                       printf("BMP CONVERSION: Truncating component 0 from %d bits to 8 bits\n", image->comps[0].prec);
+               }
+               else 
+                       adjustR = 0;
+               if (image->comps[1].prec > 8) {
+                       adjustG = image->comps[1].prec - 8;
+                       printf("BMP CONVERSION: Truncating component 1 from %d bits to 8 bits\n", image->comps[1].prec);
+               }
+               else 
+                       adjustG = 0;
+               if (image->comps[2].prec > 8) {
+                       adjustB = image->comps[2].prec - 8;
+                       printf("BMP CONVERSION: Truncating component 2 from %d bits to 8 bits\n", image->comps[2].prec);
+               }
+               else 
+                       adjustB = 0;
+
+               for (i = 0; i < wr * hr; i++) {
+                       unsigned char rc, gc, bc;
+                       int r, g, b;
+                                                       
+                       r = image->comps[0].data[w * hr - ((i) / (wr) + 1) * w + (i) % (wr)];
+                       r += (image->comps[0].sgnd ? 1 << (image->comps[0].prec - 1) : 0);
+                       rc = (unsigned char) ((r >> adjustR)+((r >> (adjustR-1))%2));
+                       g = image->comps[1].data[w * hr - ((i) / (wr) + 1) * w + (i) % (wr)];
+                       g += (image->comps[1].sgnd ? 1 << (image->comps[1].prec - 1) : 0);
+                       gc = (unsigned char) ((g >> adjustG)+((g >> (adjustG-1))%2));
+                       b = image->comps[2].data[w * hr - ((i) / (wr) + 1) * w + (i) % (wr)];
+                       b += (image->comps[2].sgnd ? 1 << (image->comps[2].prec - 1) : 0);
+                       bc = (unsigned char) ((b >> adjustB)+((b >> (adjustB-1))%2));
+
+                       fprintf(fdest, "%c%c%c", bc, gc, rc);
+                       
+                       if ((i + 1) % wr == 0) {
+                               for (pad = (3 * wr) % 4 ? 4 - (3 * wr) % 4 : 0; pad > 0; pad--) /* ADD */
+                                       fprintf(fdest, "%c", 0);
+                       }
+               }
+               fclose(fdest);
+       } else {                        /* Gray-scale */
+
+               /* -->> -->> -->> -->>
+               8 bits non code (Gray scale)
+               <<-- <<-- <<-- <<-- */
+
+               fdest = fopen(outfile, "wb");
+               w = image->comps[0].w;
+               wr = int_ceildivpow2(image->comps[0].w, image->comps[0].factor);
+           
+               h = image->comps[0].h;
+               hr = int_ceildivpow2(image->comps[0].h, image->comps[0].factor);
+           
+               fprintf(fdest, "BM");
+           
+               /* FILE HEADER */
+               /* ------------- */
+               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);
+           
+               /* INFO HEADER */
+               /* ------------- */
+               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);
+
+               if (image->comps[0].prec > 8) {
+                       adjustR = image->comps[0].prec - 8;
+                       printf("BMP CONVERSION: Truncating component 0 from %d bits to 8 bits\n", image->comps[0].prec);
+               }
+
+               for (i = 0; i < 256; i++) {
+                       fprintf(fdest, "%c%c%c%c", i, i, i, 0);
+               }
+
+               for (i = 0; i < wr * hr; i++) {
+                       unsigned char rc;
+                       int r;
+                       
+                       r = image->comps[0].data[w * hr - ((i) / (wr) + 1) * w + (i) % (wr)];
+                       r += (image->comps[0].sgnd ? 1 << (image->comps[0].prec - 1) : 0);
+                       rc = (unsigned char) ((r >> adjustR)+((r >> (adjustR-1))%2));
+                       
+                       fprintf(fdest, "%c", rc);
+
+                       if ((i + 1) % wr == 0) {
+                               for (pad = wr % 4 ? 4 - wr % 4 : 0; pad > 0; pad--)     /* ADD */
+                                       fprintf(fdest, "%c", 0);
+                       }
+               }
+               fclose(fdest);
        }
+
+       return 0;
 }
 
-       /* -->> -->> -->> -->>
+/* -->> -->> -->> -->>
 
-          PGX IMAGE FORMAT
+PGX IMAGE FORMAT
 
-          <<-- <<-- <<-- <<-- */
+<<-- <<-- <<-- <<-- */
 
 
 unsigned char readuchar(FILE * f)
 {
-       unsigned char c1;
-       fread(&c1, 1, 1, f);
-       return c1;
+  unsigned char c1;
+  fread(&c1, 1, 1, f);
+  return c1;
 }
 
 unsigned short readushort(FILE * f, int bigendian)
 {
-       unsigned char c1, c2;
-       fread(&c1, 1, 1, f);
-       fread(&c2, 1, 1, f);
-       if (bigendian)
-               return (c1 << 8) + c2;
-       else
-               return (c2 << 8) + c1;
+  unsigned char c1, c2;
+  fread(&c1, 1, 1, f);
+  fread(&c2, 1, 1, f);
+  if (bigendian)
+    return (c1 << 8) + c2;
+  else
+    return (c2 << 8) + c1;
 }
 
 unsigned int readuint(FILE * f, int bigendian)
 {
-       unsigned char c1, c2, c3, c4;
-       fread(&c1, 1, 1, f);
-       fread(&c2, 1, 1, f);
-       fread(&c3, 1, 1, f);
-       fread(&c4, 1, 1, f);
-       if (bigendian)
-               return (c1 << 24) + (c2 << 16) + (c3 << 8) + c4;
-       else
-               return (c4 << 24) + (c3 << 16) + (c2 << 8) + c1;
+  unsigned char c1, c2, c3, c4;
+  fread(&c1, 1, 1, f);
+  fread(&c2, 1, 1, f);
+  fread(&c3, 1, 1, f);
+  fread(&c4, 1, 1, f);
+  if (bigendian)
+    return (c1 << 24) + (c2 << 16) + (c3 << 8) + c4;
+  else
+    return (c4 << 24) + (c3 << 16) + (c2 << 8) + c1;
 }
 
-int pgxtoimage(char *filename, j2k_image_t * img, int tdy,
-                                                        int subsampling_dx, int subsampling_dy, int Dim[2],
-                                                        j2k_cp_t cp)
-{
-       FILE *f;
+opj_image_t* pgxtoimage(const char *filename, opj_cparameters_t *parameters) {
+       FILE *f = NULL;
        int w, h, prec;
-       int i, compno, bandno;
-       char str[256], endian[16];
-       char sign;
+       int i, numcomps, max;
+       OPJ_COLOR_SPACE color_space;
+       opj_image_cmptparm_t cmptparm;  /* maximum of 1 component  */
+       opj_image_t * image = NULL;
+
+       char endian1,endian2,sign;
+       char signtmp[32];
+
+       char temp[32];
        int bigendian;
-       j2k_comp_t *comp;
-
-       img->numcomps = 1;
-       img->comps = (j2k_comp_t *) malloc(img->numcomps * sizeof(j2k_comp_t));
-       for (compno = 0; compno < img->numcomps; compno++) {
-               FILE *src;
-               char tmp[16];
-               int max = 0;
-               int Y1;
-               comp = &img->comps[compno];
-               sprintf(str, "%s", filename);
-               f = fopen(str, "rb");
-               if (!f) {
-                       fprintf(stderr, "Failed to open %s for reading !\n", str);
-                       return 0;
-               }
-               if (fscanf(f, "PG %s %c %d %d %d", endian, &sign, &prec, &w, &h) == 5)
-               {
-                       fgetc(f);
-                       if (!strcmp(endian, "ML"))
-                               bigendian = 1;
-                       else
-                               bigendian = 0;
-                       if (compno == 0) {
-                               img->x0 = Dim[0];
-                               img->y0 = Dim[1];
-                               img->x1 =
-                                       !Dim[0] ? (w - 1) * subsampling_dx + 1 : Dim[0] + (w -
-                                                                                                                                                                                                                                                1) *
-                                       subsampling_dx + 1;
-                               img->y1 =
-                                       !Dim[1] ? (h - 1) * subsampling_dy + 1 : Dim[1] + (h -
-                                                                                                                                                                                                                                                1) *
-                                       subsampling_dy + 1;
+       opj_image_comp_t *comp = NULL;
+
+       numcomps = 1;
+       color_space = CLRSPC_GRAY;
+
+       memset(&cmptparm, 0, sizeof(opj_image_cmptparm_t));
+
+       max = 0;
+
+       f = fopen(filename, "rb");
+       if (!f) {
+         fprintf(stderr, "Failed to open %s for reading !\n", filename);
+         return NULL;
+       }
+
+       fseek(f, 0, SEEK_SET);
+       fscanf(f, "PG%[ \t]%c%c%[ \t+-]%d%[ \t]%d%[ \t]%d",temp,&endian1,&endian2,signtmp,&prec,temp,&w,temp,&h);
+       
+       i=0;
+       sign='+';               
+       while (signtmp[i]!='\0') {
+               if (signtmp[i]=='-') sign='-';
+               i++;
+       }
+       
+       fgetc(f);
+       if (endian1=='M' && endian2=='L') {
+               bigendian = 1;
+       } else if (endian2=='M' && endian1=='L') {
+               bigendian = 0;
+       } else {
+               fprintf(stderr, "Bad pgx header, please check input file\n");
+               return NULL;
+       }
+
+       /* initialize image component */
+
+       cmptparm.x0 = parameters->image_offset_x0;
+       cmptparm.y0 = parameters->image_offset_y0;
+       cmptparm.w = !cmptparm.x0 ? (w - 1) * parameters->subsampling_dx + 1 : cmptparm.x0 + (w - 1) * parameters->subsampling_dx + 1;
+       cmptparm.h = !cmptparm.y0 ? (h - 1) * parameters->subsampling_dy + 1 : cmptparm.y0 + (h - 1) * parameters->subsampling_dy + 1;
+       
+       if (sign == '-') {
+               cmptparm.sgnd = 1;
+       } else {
+               cmptparm.sgnd = 0;
+       }
+       cmptparm.prec = prec;
+       cmptparm.bpp = prec;
+       cmptparm.dx = parameters->subsampling_dx;
+       cmptparm.dy = parameters->subsampling_dy;
+       
+       /* create the image */
+       image = opj_image_create(numcomps, &cmptparm, color_space);
+       if(!image) {
+               fclose(f);
+               return NULL;
+       }
+       /* set image offset and reference grid */
+       image->x0 = cmptparm.x0;
+       image->y0 = cmptparm.x0;
+       image->x1 = cmptparm.w;
+       image->y1 = cmptparm.h;
+
+       /* set image data */
+
+       comp = &image->comps[0];
+
+       for (i = 0; i < w * h; i++) {
+               int v;
+               if (comp->prec <= 8) {
+                       if (!comp->sgnd) {
+                               v = readuchar(f);
                        } else {
-                               if (w != img->x1 || h != img->y1)
-                                       return 0;
+                               v = (char) readuchar(f);
                        }
-
-                       if (sign == '-') {
-                               comp->sgnd = 1;
+               } else if (comp->prec <= 16) {
+                       if (!comp->sgnd) {
+                               v = readushort(f, bigendian);
                        } else {
-                               comp->sgnd = 0;
+                               v = (short) readushort(f, bigendian);
                        }
-                       comp->prec = prec;
-                       comp->dx = subsampling_dx;
-                       comp->dy = subsampling_dy;
-                       bandno = 1;
+               } else {
+                       if (!comp->sgnd) {
+                               v = readuint(f, bigendian);
+                       } else {
+                               v = (int) readuint(f, bigendian);
+                       }
+               }
+               if (v > max)
+                       max = v;
+               comp->data[i] = v;
+       }
+       fclose(f);
+       comp->bpp = int_floorlog2(max) + 1;
 
-                       Y1 =
-                               cp.ty0 + bandno * cp.tdy <
-                               img->y1 ? cp.ty0 + bandno * cp.tdy : img->y1;
-                       Y1 -= img->y0;
+       return image;
+}
 
-                       sprintf(tmp, "bandtile%d", bandno);     /* bandtile file */
-                       src = fopen(tmp, "wb");
-                       if (!src) {
-                               fprintf(stderr, "failed to open %s for writing !\n", tmp);
-                       }
-                       for (i = 0; i < w * h; i++) {
-                               int v;
-                               if (i == Y1 * w / subsampling_dy && tdy != -1) {        /* bandtile is full */
-                                       fclose(src);
-                                       bandno++;
-                                       sprintf(tmp, "bandtile%d", bandno);
-                                       src = fopen(tmp, "wb");
-                                       if (!src) {
-                                               fprintf(stderr, "failed to open %s for writing !\n", tmp);
-                                       }
-                                       Y1 =
-                                               cp.ty0 + bandno * cp.tdy <
-                                               img->y1 ? cp.ty0 + bandno * cp.tdy : img->y1;
-                                       Y1 -= img->y0;
-                               }
-                               if (comp->prec <= 8) {
-                                       if (!comp->sgnd) {
-                                               v = readuchar(f);
-                                       } else {
-                                               v = (char) readuchar(f);
-                                       }
-                               } else if (comp->prec <= 16) {
-                                       if (!comp->sgnd) {
-                                               v = readushort(f, bigendian);
-                                       } else {
-                                               v = (short) readushort(f, bigendian);
-                                       }
-                               } else {
-                                       if (!comp->sgnd) {
-                                               v = readuint(f, bigendian);
-                                       } else {
-                                               v = (int) readuint(f, bigendian);
-                                       }
-                               }
-                               if (v > max)
-                                       max = v;
-                               fprintf(src, "%d ", v);
-                       }
+int imagetopgx(opj_image_t * image, const char *outfile) {
+       int w, wr, h, hr;
+       int i, j, compno;
+       FILE *fdest = NULL;
+
+       for (compno = 0; compno < image->numcomps; compno++) {
+               opj_image_comp_t *comp = &image->comps[compno];
+               char bname[256]; /* buffer for name */
+    char *name = bname; /* pointer */
+    int nbytes = 0;
+    const size_t olen = strlen(outfile);
+    const size_t dotpos = olen - 4;
+    const size_t total = dotpos + 1 + 1 + 4; /* '-' + '[1-3]' + '.pgx' */
+    if( outfile[dotpos] != '.' ) {
+      /* `pgx` was recognized but there is no dot at expected position */
+      fprintf(stderr, "ERROR -> Impossible happen." );
+      return 1;
+      }
+    if( total > 256 ) {
+      name = (char*)malloc(total+1);
+      }
+    strncpy(name, outfile, dotpos);
+               if (image->numcomps > 1) {
+                       sprintf(name+dotpos, "-%d.pgx", compno);
                } else {
-                       return 0;
+                       strcpy(name+dotpos, ".pgx");
                }
-               fclose(f);
-               fclose(src);
-               comp->bpp = int_floorlog2(max) + 1;
+               fdest = fopen(name, "wb");
+               if (!fdest) {
+                       fprintf(stderr, "ERROR -> failed to open %s for writing\n", name);
+                       return 1;
+               }
+    /* dont need name anymore */
+    if( total > 256 ) {
+      free(name);
+      }
+
+               w = image->comps[compno].w;
+               wr = int_ceildivpow2(image->comps[compno].w, image->comps[compno].factor);
+           
+               h = image->comps[compno].h;
+               hr = int_ceildivpow2(image->comps[compno].h, image->comps[compno].factor);
+           
+               fprintf(fdest, "PG ML %c %d %d %d\n", comp->sgnd ? '-' : '+', comp->prec, wr, hr);
+               if (comp->prec <= 8) {
+                       nbytes = 1;
+               } else if (comp->prec <= 16) {
+                       nbytes = 2;
+               } else {
+                       nbytes = 4;
+               }
+               for (i = 0; i < wr * hr; i++) {
+                       int v = image->comps[compno].data[i / wr * w + i % wr];
+                       for (j = nbytes - 1; j >= 0; j--) {
+                               char byte = (char) (v >> (j * 8));
+                               fwrite(&byte, 1, 1, fdest);
+                       }
+               }
+               fclose(fdest);
        }
-       return 1;
+
+       return 0;
 }
 
 /* -->> -->> -->> -->>
 
-  PNM IMAGE FORMAT
+PNM IMAGE FORMAT
 
- <<-- <<-- <<-- <<-- */
+<<-- <<-- <<-- <<-- */
 
-int pnmtoimage(char *filename, j2k_image_t * img, int subsampling_dx,
-                                                        int subsampling_dy, int Dim[2])
-{
-       FILE *f;
-       FILE *Compo0, *Compo1, *Compo2;
-       int w, h;
-       int i;
-       char value;
-       char comment[256];
+opj_image_t* pnmtoimage(const char *filename, opj_cparameters_t *parameters) {
+       int subsampling_dx = parameters->subsampling_dx;
+       int subsampling_dy = parameters->subsampling_dy;
 
+       FILE *f = NULL;
+       int i, compno, numcomps, w, h;
+       OPJ_COLOR_SPACE color_space;
+       opj_image_cmptparm_t cmptparm[3];       /* maximum of 3 components */
+       opj_image_t * image = NULL;
+       char value;
+       
        f = fopen(filename, "rb");
        if (!f) {
-               fprintf(stderr,
-                                               "\033[0;33mFailed to open %s for reading !!\033[0;39m\n",
-                                               filename);
+               fprintf(stderr, "Failed to open %s for reading !!\n", filename);
                return 0;
        }
 
@@ -629,218 +1188,940 @@ int pnmtoimage(char *filename, j2k_image_t * img, int subsampling_dx,
                return 0;
        value = fgetc(f);
 
-       if (value == '2') {
-               fgetc(f);
-               if (fgetc(f) == '#') {
-                       fseek(f, 0, SEEK_SET);
-                       fscanf(f, "P2\n");
-                       fgets(comment, 256, f);
-                       fscanf(f, "%d %d\n255", &w, &h);
-               } else {
-                       fseek(f, 0, SEEK_SET);
-                       fscanf(f, "P2\n%d %d\n255", &w, &h);
+               switch(value) {
+                       case '2':       /* greyscale image type */
+                       case '5':
+                               numcomps = 1;
+                               color_space = CLRSPC_GRAY;
+                               break;
+                               
+                       case '3':       /* RGB image type */
+                       case '6':
+                               numcomps = 3;
+                               color_space = CLRSPC_SRGB;
+                               break;
+                               
+                       default:
+                               fclose(f);
+                               return NULL;
                }
-
+               
                fgetc(f);
-               img->x0 = Dim[0];
-               img->y0 = Dim[1];
-               img->x1 =
-                       !Dim[0] ? (w - 1) * subsampling_dx + 1 : Dim[0] + (w -
-                                                                                                                                                                                                                                1) *
-                       subsampling_dx + 1;
-               img->y1 =
-                       !Dim[1] ? (h - 1) * subsampling_dy + 1 : Dim[1] + (h -
-                                                                                                                                                                                                                                1) *
-                       subsampling_dy + 1;
-
-               img->numcomps = 1;
-               img->comps = (j2k_comp_t *) malloc(sizeof(j2k_comp_t));
-               img->comps[0].prec = 8;
-               img->comps[0].bpp = 8;
-               img->comps[0].sgnd = 0;
-               img->comps[0].dx = subsampling_dx;
-               img->comps[0].dy = subsampling_dy;
-
-               Compo0 = fopen("Compo0", "wb");
-               if (!Compo0) {
-                       fprintf(stderr,
-                                                       "\033[0;33mFailed to open Compo0 for writing !\033[0;39m\n");
+               
+               /* skip comments */
+               while(fgetc(f) == '#') while(fgetc(f) != '\n');
+               
+               fseek(f, -1, SEEK_CUR);
+               fscanf(f, "%d %d\n255", &w, &h);                        
+               fgetc(f);       /* <cr><lf> */
+               
+       /* initialize image components */
+       memset(&cmptparm[0], 0, 3 * sizeof(opj_image_cmptparm_t));
+       for(i = 0; i < numcomps; i++) {
+               cmptparm[i].prec = 8;
+               cmptparm[i].bpp = 8;
+               cmptparm[i].sgnd = 0;
+               cmptparm[i].dx = subsampling_dx;
+               cmptparm[i].dy = subsampling_dy;
+               cmptparm[i].w = w;
+               cmptparm[i].h = h;
+       }
+       /* create the image */
+       image = opj_image_create(numcomps, &cmptparm[0], color_space);
+       if(!image) {
+               fclose(f);
+               return NULL;
+       }
+
+       /* set image offset and reference grid */
+       image->x0 = parameters->image_offset_x0;
+       image->y0 = parameters->image_offset_y0;
+       image->x1 = parameters->image_offset_x0 + (w - 1) *     subsampling_dx + 1;
+       image->y1 = parameters->image_offset_y0 + (h - 1) *     subsampling_dy + 1;
+
+       /* set image data */
+
+       if ((value == '2') || (value == '3')) { /* ASCII */
+               for (i = 0; i < w * h; i++) {
+                       for(compno = 0; compno < numcomps; compno++) {
+                               unsigned int index = 0;
+                               fscanf(f, "%u", &index);
+                               /* compno : 0 = GREY, (0, 1, 2) = (R, G, B) */
+                               image->comps[compno].data[i] = index;
+                       }
                }
+       } else if ((value == '5') || (value == '6')) {  /* BINARY */
                for (i = 0; i < w * h; i++) {
-                       unsigned int l;
-                       fscanf(f, "%d", &l);
-                       fprintf(Compo0, "%c", l);
+                       for(compno = 0; compno < numcomps; compno++) {
+                               unsigned char index = 0;
+                               fread(&index, 1, 1, f);
+                               /* compno : 0 = GREY, (0, 1, 2) = (R, G, B) */
+                               image->comps[compno].data[i] = index;
+                       }
                }
-               fclose(Compo0);
-       } else if (value == '5') {
-               fgetc(f);
-               if (fgetc(f) == '#') {
-                       fseek(f, 0, SEEK_SET);
-                       fscanf(f, "P5\n");
-                       fgets(comment, 256, f);
-                       fscanf(f, "%d %d\n255", &w, &h);
-               } else {
-                       fseek(f, 0, SEEK_SET);
-                       fscanf(f, "P5\n%d %d\n255", &w, &h);
+       }
+
+       fclose(f);
+
+       return image;
+}
+
+int imagetopnm(opj_image_t * image, const char *outfile) {
+       int w, wr, wrr, h, hr, hrr, max;
+       int i, compno;
+       int adjustR, adjustG, adjustB, adjustX;
+       FILE *fdest = NULL;
+       char S2;
+       const char *tmp = outfile;
+
+       while (*tmp) {
+               tmp++;
+       }
+       tmp--;
+       tmp--;
+       S2 = *tmp;
+
+       if (image->numcomps == 3 && image->comps[0].dx == image->comps[1].dx
+               && image->comps[1].dx == image->comps[2].dx
+               && image->comps[0].dy == image->comps[1].dy
+               && image->comps[1].dy == image->comps[2].dy
+               && image->comps[0].prec == image->comps[1].prec
+               && image->comps[1].prec == image->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;
                }
 
-               fgetc(f);
-               img->x0 = Dim[0];
-               img->y0 = Dim[1];
-               img->x1 =
-                       !Dim[0] ? (w - 1) * subsampling_dx + 1 : Dim[0] + (w -
-                                                                                                                                                                                                                                1) *
-                       subsampling_dx + 1;
-               img->y1 =
-                       !Dim[1] ? (h - 1) * subsampling_dy + 1 : Dim[1] + (h -
-                                                                                                                                                                                                                                1) *
-                       subsampling_dy + 1;
-
-               img->numcomps = 1;
-               img->comps = (j2k_comp_t *) malloc(sizeof(j2k_comp_t));
-               img->comps[0].prec = 8;
-               img->comps[0].bpp = 8;
-               img->comps[0].sgnd = 0;
-               img->comps[0].dx = subsampling_dx;
-               img->comps[0].dy = subsampling_dy;
-               Compo0 = fopen("Compo0", "wb");
-               if (!Compo0) {
-                       fprintf(stderr,
-                                                       "\033[0;33mFailed to open Compo0 for writing !\033[0;39m\n");
+               w = int_ceildiv(image->x1 - image->x0, image->comps[0].dx);
+               wr = image->comps[0].w;
+               wrr = int_ceildivpow2(image->comps[0].w, image->comps[0].factor);
+        
+               h = int_ceildiv(image->y1 - image->y0, image->comps[0].dy);
+               hr = image->comps[0].h;
+               hrr = int_ceildivpow2(image->comps[0].h, image->comps[0].factor);
+           
+               max = image->comps[0].prec > 8 ? 255 : (1 << image->comps[0].prec) - 1;
+           
+               image->comps[0].x0 = int_ceildivpow2(image->comps[0].x0 - int_ceildiv(image->x0, image->comps[0].dx), image->comps[0].factor);
+               image->comps[0].y0 = int_ceildivpow2(image->comps[0].y0 -       int_ceildiv(image->y0, image->comps[0].dy), image->comps[0].factor);
+
+               fprintf(fdest, "P6\n%d %d\n%d\n", wrr, hrr, max);
+
+               if (image->comps[0].prec > 8) {
+                       adjustR = image->comps[0].prec - 8;
+                       printf("PNM CONVERSION: Truncating component 0 from %d bits to 8 bits\n", image->comps[0].prec);
                }
-               for (i = 0; i < w * h; i++) {
-                       unsigned char l;
-                       fread(&l, 1, 1, f);
-                       fwrite(&l, 1, 1, Compo0);
+               else 
+                       adjustR = 0;
+               if (image->comps[1].prec > 8) {
+                       adjustG = image->comps[1].prec - 8;
+                       printf("PNM CONVERSION: Truncating component 1 from %d bits to 8 bits\n", image->comps[1].prec);
                }
-               fclose(Compo0);
-       } else if (value == '3') {
-               fgetc(f);
-               if (fgetc(f) == '#') {
-                       fseek(f, 0, SEEK_SET);
-                       fscanf(f, "P3\n");
-                       fgets(comment, 256, f);
-                       fscanf(f, "%d %d\n255", &w, &h);
-               } else {
-                       fseek(f, 0, SEEK_SET);
-                       fscanf(f, "P3\n%d %d\n255", &w, &h);
+               else 
+                       adjustG = 0;
+               if (image->comps[2].prec > 8) {
+                       adjustB = image->comps[2].prec - 8;
+                       printf("PNM CONVERSION: Truncating component 2 from %d bits to 8 bits\n", image->comps[2].prec);
                }
+               else 
+                       adjustB = 0;
 
-               fgetc(f);
-               img->x0 = Dim[0];
-               img->y0 = Dim[1];
-               img->x1 =
-                       !Dim[0] ? (w - 1) * subsampling_dx + 1 : Dim[0] + (w -
-                                                                                                                                                                                                                                1) *
-                       subsampling_dx + 1;
-               img->y1 =
-                       !Dim[1] ? (h - 1) * subsampling_dy + 1 : Dim[1] + (h -
-                                                                                                                                                                                                                                1) *
-                       subsampling_dy + 1;
-               img->numcomps = 3;
-               img->comps = (j2k_comp_t *) malloc(img->numcomps * sizeof(j2k_comp_t));
-               for (i = 0; i < img->numcomps; i++) {
-                       img->comps[i].prec = 8;
-                       img->comps[i].bpp = 8;
-                       img->comps[i].sgnd = 0;
-                       img->comps[i].dx = subsampling_dx;
-                       img->comps[i].dy = subsampling_dy;
-               }
-               Compo0 = fopen("Compo0", "wb");
-               if (!Compo0) {
-                       fprintf(stderr,
-                                                       "\033[0;33mFailed to open Compo0 for writing !\033[0;39m\n");
-               }
-
-               Compo1 = fopen("Compo1", "wb");
-               if (!Compo1) {
-                       fprintf(stderr,
-                                                       "\033[0;33mFailed to open Compo1 for writing !\033[0;39m\n");
-               }
-
-               Compo2 = fopen("Compo2", "wb");
-               if (!Compo2) {
-                       fprintf(stderr,
-                                                       "\033[0;33mFailed to open Compo2 for writing !\033[0;39m\n");
+
+               for (i = 0; i < wrr * hrr; i++) {
+                       int r, g, b;
+                       unsigned char rc,gc,bc;
+                       r = image->comps[0].data[i / wrr * wr + i % wrr];
+                       r += (image->comps[0].sgnd ? 1 << (image->comps[0].prec - 1) : 0);
+                       rc = (unsigned char) ((r >> adjustR)+((r >> (adjustR-1))%2));
+
+                       g = image->comps[1].data[i / wrr * wr + i % wrr];
+                       g += (image->comps[1].sgnd ? 1 << (image->comps[1].prec - 1) : 0);
+                       gc = (unsigned char) ((g >> adjustG)+((g >> (adjustG-1))%2));
+                       
+                       b = image->comps[2].data[i / wrr * wr + i % wrr];
+                       b += (image->comps[2].sgnd ? 1 << (image->comps[2].prec - 1) : 0);
+                       bc = (unsigned char) ((b >> adjustB)+((b >> (adjustB-1))%2));
+                       
+                       fprintf(fdest, "%c%c%c", rc, gc, bc);
                }
+               fclose(fdest);
 
-               for (i = 0; i < w * h; i++) {
-                       unsigned int r, g, b;
-                       fscanf(f, "%d", &r);
-                       fscanf(f, "%d", &g);
-                       fscanf(f, "%d", &b);
-                       fprintf(Compo0, "%c", r);
-                       fprintf(Compo1, "%c", g);
-                       fprintf(Compo2, "%c", b);
-               }
-               fclose(Compo0);
-               fclose(Compo1);
-               fclose(Compo2);
-       } else if (value == '6') {
-               fgetc(f);
-               if (fgetc(f) == '#') {
-                       fseek(f, 0, SEEK_SET);
-                       fscanf(f, "P6\n");
-                       fgets(comment, 256, f);
-                       fscanf(f, "%d %d\n255", &w, &h);
-               } else {
-                       fseek(f, 0, SEEK_SET);
-                       fscanf(f, "P6\n%d %d\n255", &w, &h);
+       } else {
+               int ncomp=(S2=='g' || S2=='G')?1:image->numcomps;
+               if (image->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++) {
+                       char name[256];
+                       if (ncomp > 1) {
+                               sprintf(name, "%d.%s", compno, outfile);
+                       } else {
+                               sprintf(name, "%s", outfile);
+                       }
+                       
+                       fdest = fopen(name, "wb");
+                       if (!fdest) {
+                               fprintf(stderr, "ERROR -> failed to open %s for writing\n", name);
+                               return 1;
+                       }
+            
+                       w = int_ceildiv(image->x1 - image->x0, image->comps[compno].dx);
+                       wr = image->comps[compno].w;
+                       wrr = int_ceildivpow2(image->comps[compno].w, image->comps[compno].factor);
+                       
+                       h = int_ceildiv(image->y1 - image->y0, image->comps[compno].dy);
+                       hr = image->comps[compno].h;
+                       hrr = int_ceildivpow2(image->comps[compno].h, image->comps[compno].factor);
+                       
+                       max = image->comps[compno].prec > 8 ? 255 : (1 << image->comps[compno].prec) - 1;
+                       
+                       image->comps[compno].x0 = int_ceildivpow2(image->comps[compno].x0 - int_ceildiv(image->x0, image->comps[compno].dx), image->comps[compno].factor);
+                       image->comps[compno].y0 = int_ceildivpow2(image->comps[compno].y0 - int_ceildiv(image->y0, image->comps[compno].dy), image->comps[compno].factor);
+                       
+                       fprintf(fdest, "P5\n%d %d\n%d\n", wrr, hrr, max);
+                       
+                       if (image->comps[compno].prec > 8) {
+                               adjustX = image->comps[0].prec - 8;
+                               printf("PNM CONVERSION: Truncating component %d from %d bits to 8 bits\n",compno, image->comps[compno].prec);
+                       }
+                       else 
+                               adjustX = 0;
+                       
+                       for (i = 0; i < wrr * hrr; i++) {
+                               int l;
+                               unsigned char lc;
+                               l = image->comps[compno].data[i / wrr * wr + i % wrr];
+                               l += (image->comps[compno].sgnd ? 1 << (image->comps[compno].prec - 1) : 0);
+                               lc = (unsigned char) ((l >> adjustX)+((l >> (adjustX-1))%2));
+                               fprintf(fdest, "%c", lc);
+                       }
+                       fclose(fdest);
+               }
+       }
 
-               fgetc(f);
-               img->x0 = Dim[0];
-               img->y0 = Dim[1];
-               img->x1 =
-                       !Dim[0] ? (w - 1) * subsampling_dx + 1 : Dim[0] + (w -
-                                                                                                                                                                                                                                1) *
-                       subsampling_dx + 1;
-               img->y1 =
-                       !Dim[1] ? (h - 1) * subsampling_dy + 1 : Dim[1] + (h -
-                                                                                                                                                                                                                                1) *
-                       subsampling_dy + 1;
-               img->numcomps = 3;
-               img->comps = (j2k_comp_t *) malloc(img->numcomps * sizeof(j2k_comp_t));
-               for (i = 0; i < img->numcomps; i++) {
-                       img->comps[i].prec = 8;
-                       img->comps[i].bpp = 8;
-                       img->comps[i].sgnd = 0;
-                       img->comps[i].dx = subsampling_dx;
-                       img->comps[i].dy = subsampling_dy;
-               }
-               Compo0 = fopen("Compo0", "wb");
-               if (!Compo0) {
-                       fprintf(stderr,
-                                                       "\033[0;33mFailed to open Compo0 for writing !\033[0;39m\n");
-               }
-
-               Compo1 = fopen("Compo1", "wb");
-               if (!Compo1) {
-                       fprintf(stderr,
-                                                       "\033[0;33mFailed to open Compo1 for writing !\033[0;39m\n");
-               }
-
-               Compo2 = fopen("Compo2", "wb");
-               if (!Compo2) {
-                       fprintf(stderr,
-                                                       "\033[0;33mFailed to open Compo2 for writing !\033[0;39m\n");
+       return 0;
+}
+
+/* -->> -->> -->> -->>
+
+       TIFF IMAGE FORMAT
+
+ <<-- <<-- <<-- <<-- */
+
+typedef struct tiff_infoheader{
+       DWORD tiWidth;  // Width of Image in pixel
+       DWORD tiHeight; // Height of Image in pixel
+       DWORD tiPhoto;  // Photometric
+       WORD  tiBps;    // Bits per sample
+       WORD  tiSf;             // Sample Format
+       WORD  tiSpp;    // Sample per pixel 1-bilevel,gray scale , 2- RGB
+       WORD  tiPC;     // Planar config (1-Interleaved, 2-Planarcomp)
+}tiff_infoheader_t;
+
+int imagetotif(opj_image_t * image, const char *outfile) {
+       int width, height, imgsize;
+       int bps,index,adjust = 0;
+       int last_i=0;
+       TIFF *tif;
+       tdata_t buf;
+       tstrip_t strip;
+       tsize_t strip_size;
+
+       if (image->numcomps == 3 && image->comps[0].dx == image->comps[1].dx
+               && image->comps[1].dx == image->comps[2].dx
+               && image->comps[0].dy == image->comps[1].dy
+               && image->comps[1].dy == image->comps[2].dy
+               && image->comps[0].prec == image->comps[1].prec
+               && image->comps[1].prec == image->comps[2].prec) {
+
+                       /* -->> -->> -->>    
+                       RGB color           
+                       <<-- <<-- <<-- */
+
+                       tif = TIFFOpen(outfile, "wb"); 
+                       if (!tif) {
+                               fprintf(stderr, "ERROR -> failed to open %s for writing\n", outfile);
+                               return 1;
+                       }
+
+                       width   = image->comps[0].w;
+                       height  = image->comps[0].h;
+                       imgsize = image->comps[0].w * image->comps[0].h ;
+                       bps             = image->comps[0].prec;
+                       /* Set tags */
+                       TIFFSetField(tif, TIFFTAG_IMAGEWIDTH, width);
+                       TIFFSetField(tif, TIFFTAG_IMAGELENGTH, height);
+                       TIFFSetField(tif, TIFFTAG_SAMPLESPERPIXEL, 3);
+                       TIFFSetField(tif, TIFFTAG_BITSPERSAMPLE, bps);
+                       TIFFSetField(tif, TIFFTAG_ORIENTATION, ORIENTATION_TOPLEFT);
+                       TIFFSetField(tif, TIFFTAG_PLANARCONFIG, PLANARCONFIG_CONTIG);
+                       TIFFSetField(tif, TIFFTAG_PHOTOMETRIC, PHOTOMETRIC_RGB);
+                       TIFFSetField(tif, TIFFTAG_ROWSPERSTRIP, 1);
+
+                       /* Get a buffer for the data */
+                       buf = _TIFFmalloc(TIFFStripSize(tif));
+                       index=0;
+                       strip_size=0;
+                       strip_size=TIFFStripSize(tif);
+                       adjust = image->comps[0].sgnd ? 1 << (image->comps[0].prec - 1) : 0;
+                       for (strip = 0; strip < TIFFNumberOfStrips(tif); strip++) {
+                               unsigned char *dat8;
+                               int i, ssize;
+                               ssize = TIFFStripSize(tif);
+                               dat8 = buf;
+                               if (image->comps[0].prec == 8){
+                                       for (i=0; i<ssize-2; i+=3) {    // 8 bits per pixel 
+                                               int r = 0,g = 0,b = 0;
+                                               if(index < imgsize){
+                                                       r = image->comps[0].data[index];
+                                                       g = image->comps[1].data[index];
+                                                       b = image->comps[2].data[index];
+                                                       if (image->comps[0].sgnd){                      
+                                                               r += adjust;
+                                                               g += adjust;
+                                                               b += adjust;
+                                                       }
+                                                       dat8[i+0] = r ; // R 
+                                                       dat8[i+1] = g ; // G 
+                                                       dat8[i+2] = b ; // B 
+                                                       index++;
+                                                       last_i = i+3;
+                                               }else
+                                                       break;
+                                       }
+                                       if(last_i < ssize){
+                                               for (i=last_i; i<ssize; i+=3) { // 8 bits per pixel 
+                                                       int r = 0,g = 0,b = 0;
+                                                       if(index < imgsize){
+                                                               r = image->comps[0].data[index];
+                                                               g = image->comps[1].data[index];
+                                                               b = image->comps[2].data[index];
+                                                               if (image->comps[0].sgnd){                      
+                                                                       r += adjust;
+                                                                       g += adjust;
+                                                                       b += adjust;
+                                                               }
+                                                               dat8[i+0] = r ; // R 
+                                                               if(i+1 <ssize) dat8[i+1] = g ;  else break;// G 
+                                                               if(i+2 <ssize) dat8[i+2] = b ;  else break;// B 
+                                                               index++;
+                                                       }else
+                                                               break;
+                                               }
+                                       }
+                               }else if (image->comps[0].prec == 12){
+                                       for (i=0; i<ssize-8; i+=9) {    // 12 bits per pixel 
+                                               int r = 0,g = 0,b = 0;
+                                               int r1 = 0,g1 = 0,b1 = 0;
+                                               if((index < imgsize)&(index+1 < imgsize)){
+                                                       r  = image->comps[0].data[index];
+                                                       g  = image->comps[1].data[index];
+                                                       b  = image->comps[2].data[index];
+                                                       r1 = image->comps[0].data[index+1];
+                                                       g1 = image->comps[1].data[index+1];
+                                                       b1 = image->comps[2].data[index+1];
+                                                       if (image->comps[0].sgnd){                                                                                                              
+                                                               r  += adjust;
+                                                               g  += adjust;
+                                                               b  += adjust;
+                                                               r1 += adjust;
+                                                               g1 += adjust;
+                                                               b1 += adjust;
+                                                       }
+                                                       dat8[i+0] = (r >> 4);
+                                                       dat8[i+1] = ((r & 0x0f) << 4 )|((g >> 8)& 0x0f);
+                                                       dat8[i+2] = g ;         
+                                                       dat8[i+3] = (b >> 4);
+                                                       dat8[i+4] = ((b & 0x0f) << 4 )|((r1 >> 8)& 0x0f);
+                                                       dat8[i+5] = r1;         
+                                                       dat8[i+6] = (g1 >> 4);
+                                                       dat8[i+7] = ((g1 & 0x0f)<< 4 )|((b1 >> 8)& 0x0f);
+                                                       dat8[i+8] = b1;
+                                                       index+=2;
+                                                       last_i = i+9;
+                                               }else
+                                                       break;
+                                       }
+                                       if(last_i < ssize){
+                                               for (i= last_i; i<ssize; i+=9) {        // 12 bits per pixel 
+                                                       int r = 0,g = 0,b = 0;
+                                                       int r1 = 0,g1 = 0,b1 = 0;
+                                                       if((index < imgsize)&(index+1 < imgsize)){
+                                                               r  = image->comps[0].data[index];
+                                                               g  = image->comps[1].data[index];
+                                                               b  = image->comps[2].data[index];
+                                                               r1 = image->comps[0].data[index+1];
+                                                               g1 = image->comps[1].data[index+1];
+                                                               b1 = image->comps[2].data[index+1];
+                                                               if (image->comps[0].sgnd){                                                                                                              
+                                                                       r  += adjust;
+                                                                       g  += adjust;
+                                                                       b  += adjust;
+                                                                       r1 += adjust;
+                                                                       g1 += adjust;
+                                                                       b1 += adjust;
+                                                               }
+                                                               dat8[i+0] = (r >> 4);
+                                                               if(i+1 <ssize) dat8[i+1] = ((r & 0x0f) << 4 )|((g >> 8)& 0x0f); else break;
+                                                               if(i+2 <ssize) dat8[i+2] = g ;                  else break;
+                                                               if(i+3 <ssize) dat8[i+3] = (b >> 4);    else break;
+                                                               if(i+4 <ssize) dat8[i+4] = ((b & 0x0f) << 4 )|((r1 >> 8)& 0x0f);else break;
+                                                               if(i+5 <ssize) dat8[i+5] = r1;                  else break;
+                                                               if(i+6 <ssize) dat8[i+6] = (g1 >> 4);   else break;
+                                                               if(i+7 <ssize) dat8[i+7] = ((g1 & 0x0f)<< 4 )|((b1 >> 8)& 0x0f);else break;
+                                                               if(i+8 <ssize) dat8[i+8] = b1;                  else break;
+                                                               index+=2;
+                                                       }else
+                                                               break;
+                                               }
+                                       }
+                               }else if (image->comps[0].prec == 16){
+                                       for (i=0 ; i<ssize-5 ; i+=6) {  // 16 bits per pixel 
+                                               int r = 0,g = 0,b = 0;
+                                               if(index < imgsize){
+                                                       r = image->comps[0].data[index];
+                                                       g = image->comps[1].data[index];
+                                                       b = image->comps[2].data[index];
+                                                       if (image->comps[0].sgnd){
+                                                       r += adjust;
+                                                       g += adjust;
+                                                       b += adjust;
+                                                       }
+                                                       dat8[i+0] =  r;//LSB
+                                                       dat8[i+1] = (r >> 8);//MSB       
+                                                       dat8[i+2] =  g;         
+                                                       dat8[i+3] = (g >> 8);
+                                                       dat8[i+4] =  b; 
+                                                       dat8[i+5] = (b >> 8);
+                                                       index++;
+                                                       last_i = i+6;
+                                               }else
+                                                       break; 
+                                       }
+                                       if(last_i < ssize){
+                                               for (i=0 ; i<ssize ; i+=6) {    // 16 bits per pixel 
+                                                       int r = 0,g = 0,b = 0;
+                                                       if(index < imgsize){
+                                                               r = image->comps[0].data[index];
+                                                               g = image->comps[1].data[index];
+                                                               b = image->comps[2].data[index];
+                                                               if (image->comps[0].sgnd){
+                                                                       r += adjust;
+                                                                       g += adjust;
+                                                                       b += adjust;
+                                                               }
+                                                               dat8[i+0] =  r;//LSB
+                                                               if(i+1 <ssize) dat8[i+1] = (r >> 8);else break;//MSB     
+                                                               if(i+2 <ssize) dat8[i+2] =  g;          else break;
+                                                               if(i+3 <ssize) dat8[i+3] = (g >> 8);else break;
+                                                               if(i+4 <ssize) dat8[i+4] =  b;          else break;
+                                                               if(i+5 <ssize) dat8[i+5] = (b >> 8);else break;
+                                                               index++;
+                                                       }else
+                                                               break; 
+                                               }                                               
+                                       }
+                               }else{
+                                       fprintf(stderr,"Bits=%d, Only 8,12,16 bits implemented\n",image->comps[0].prec);
+                                       fprintf(stderr,"Aborting\n");
+                                       return 1;
+                               }
+                               TIFFWriteEncodedStrip(tif, strip, buf, strip_size);
+                       }
+                       _TIFFfree(buf);
+                       TIFFClose(tif);
+               }else if (image->numcomps == 1){
+                       /* -->> -->> -->>    
+                       Black and White     
+                       <<-- <<-- <<-- */
+
+                       tif = TIFFOpen(outfile, "wb"); 
+                       if (!tif) {
+                               fprintf(stderr, "ERROR -> failed to open %s for writing\n", outfile);
+                               return 1;
+                       }
+
+                       width   = image->comps[0].w;
+                       height= image->comps[0].h;
+                       bps             = image->comps[0].prec;
+
+                       /* Set tags */
+                       TIFFSetField(tif, TIFFTAG_IMAGEWIDTH, width);
+                       TIFFSetField(tif, TIFFTAG_IMAGELENGTH, height);
+                       TIFFSetField(tif, TIFFTAG_SAMPLESPERPIXEL, 1);
+                       TIFFSetField(tif, TIFFTAG_BITSPERSAMPLE, bps);
+                       TIFFSetField(tif, TIFFTAG_ORIENTATION, ORIENTATION_TOPLEFT);
+                       TIFFSetField(tif, TIFFTAG_PLANARCONFIG, PLANARCONFIG_CONTIG);
+                       TIFFSetField(tif, TIFFTAG_PHOTOMETRIC, PHOTOMETRIC_MINISBLACK);
+                       TIFFSetField(tif, TIFFTAG_ROWSPERSTRIP, 1);
+
+                       /* Get a buffer for the data */
+                       buf = _TIFFmalloc(TIFFStripSize(tif));
+                       index = 0;
+                       strip_size = 0;
+                       strip_size = TIFFStripSize(tif);
+                       for (strip = 0; strip < TIFFNumberOfStrips(tif); strip++) {
+                               unsigned char *dat8;
+                               int i;
+                               dat8 = buf;
+                               if (image->comps[0].prec == 8){
+                                       for (i=0; i<TIFFStripSize(tif); i+=1) { // 8 bits per pixel 
+                                               int r = 0;
+                                               r = image->comps[0].data[index];
+                                               if (image->comps[0].sgnd){
+                                                       r  += adjust;
+                                               }
+                                               dat8[i+0] = r;
+                                               index++;
+                                       }
+                               }else if (image->comps[0].prec == 12){
+                                       for (i = 0; i<TIFFStripSize(tif); i+=3) {       // 12 bits per pixel 
+                                               int r = 0, r1 = 0;
+                                               r  = image->comps[0].data[index];
+                                               r1 = image->comps[0].data[index+1];
+                                               if (image->comps[0].sgnd){
+                                                       r  += adjust;
+                                                       r1 += adjust;
+                                               }
+                                               dat8[i+0] = (r >> 4);
+                                               dat8[i+1] = ((r & 0x0f) << 4 )|((r1 >> 8)& 0x0f);
+                                               dat8[i+2] = r1 ;
+                                               index+=2;
+                                       }
+                               }else if (image->comps[0].prec == 16){
+                                       for (i=0; i<TIFFStripSize(tif); i+=2) { // 16 bits per pixel 
+                                               int r = 0;
+                                               r = image->comps[0].data[index];
+                                               if (image->comps[0].sgnd){
+                                                       r  += adjust;
+                                               }
+                                               dat8[i+0] = r;
+                                               dat8[i+1] = r >> 8;
+                                               index++;
+                                       }
+                               }else{
+                                       fprintf(stderr,"Bits=%d, Only 8,12,16 bits implemented\n",image->comps[0].prec);
+                                       fprintf(stderr,"Aborting\n");
+                                       return 1;
+                               }
+                               TIFFWriteEncodedStrip(tif, strip, buf, strip_size);
+                       }
+                       _TIFFfree(buf);
+                       TIFFClose(tif);
+               }else{
+                       fprintf(stderr,"False color format. Only RGB & Grayscale has been implemented\n");
+                       fprintf(stderr,"Aborting\n");
+                       return 1;
                }
+               return 0;
+}
 
-               for (i = 0; i < w * h; i++) {
-                       unsigned char r, g, b;
-                       fread(&r, 1, 1, f);
-                       fread(&g, 1, 1, f);
-                       fread(&b, 1, 1, f);
-                       fwrite(&r, 1, 1, Compo0);
-                       fwrite(&g, 1, 1, Compo1);
-                       fwrite(&b, 1, 1, Compo2);
-               }
-               fclose(Compo0);
-               fclose(Compo1);
-               fclose(Compo2);
-       } else {
+opj_image_t* tiftoimage(const char *filename, opj_cparameters_t *parameters)
+{
+       int subsampling_dx = parameters->subsampling_dx;
+       int subsampling_dy = parameters->subsampling_dy;
+       TIFF *tif;
+       tiff_infoheader_t Info;
+       tdata_t buf;
+       tstrip_t strip;
+       tsize_t strip_size;
+       int j, numcomps, w, h,index;
+       OPJ_COLOR_SPACE color_space;
+       opj_image_cmptparm_t cmptparm[3];
+       opj_image_t * image = NULL;
+       int imgsize;
+
+       tif = TIFFOpen(filename, "r");
+
+       if (!tif) {
+               fprintf(stderr, "Failed to open %s for reading\n", filename);
                return 0;
        }
+
+       TIFFGetField(tif, TIFFTAG_IMAGEWIDTH, &Info.tiWidth);
+       TIFFGetField(tif, TIFFTAG_IMAGELENGTH, &Info.tiHeight);
+       TIFFGetField(tif, TIFFTAG_BITSPERSAMPLE, &Info.tiBps);
+       TIFFGetField(tif, TIFFTAG_SAMPLEFORMAT, &Info.tiSf);
+       TIFFGetField(tif, TIFFTAG_SAMPLESPERPIXEL, &Info.tiSpp);
+       Info.tiPhoto = 0;
+       TIFFGetField(tif, TIFFTAG_PHOTOMETRIC, &Info.tiPhoto);
+       TIFFGetField(tif, TIFFTAG_PLANARCONFIG, &Info.tiPC);
+       w= Info.tiWidth;
+       h= Info.tiHeight;
+       
+       if (Info.tiPhoto == 2) { 
+               /* -->> -->> -->>    
+               RGB color           
+               <<-- <<-- <<-- */
+
+               numcomps = 3;
+               color_space = CLRSPC_SRGB;
+               /* initialize image components*/ 
+               memset(&cmptparm[0], 0, 3 * sizeof(opj_image_cmptparm_t));
+               for(j = 0; j < numcomps; j++) {
+                       if (parameters->cp_cinema) {
+                               cmptparm[j].prec = 12;
+                               cmptparm[j].bpp = 12;
+                       }else{
+                               cmptparm[j].prec = Info.tiBps;
+                               cmptparm[j].bpp = Info.tiBps;
+                       }
+                       cmptparm[j].sgnd = 0;
+                       cmptparm[j].dx = subsampling_dx;
+                       cmptparm[j].dy = subsampling_dy;
+                       cmptparm[j].w = w;
+                       cmptparm[j].h = h;
+               }
+               /* create the image*/ 
+               image = opj_image_create(numcomps, &cmptparm[0], color_space);
+               if(!image) {
+                       TIFFClose(tif);
+                       return NULL;
+               }
+
+               /* set image offset and reference grid */
+               image->x0 = parameters->image_offset_x0;
+               image->y0 = parameters->image_offset_y0;
+               image->x1 =     !image->x0 ? (w - 1) * subsampling_dx + 1 : image->x0 + (w - 1) * subsampling_dx + 1;
+               image->y1 =     !image->y0 ? (h - 1) * subsampling_dy + 1 : image->y0 + (h - 1) * subsampling_dy + 1;
+
+               buf = _TIFFmalloc(TIFFStripSize(tif));
+               strip_size=0;
+               strip_size=TIFFStripSize(tif);
+               index = 0;
+               imgsize = image->comps[0].w * image->comps[0].h ;
+               /* Read the Image components*/
+               for (strip = 0; strip < TIFFNumberOfStrips(tif); strip++) {
+                       unsigned char *dat8;
+                       int i, ssize;
+                       ssize = TIFFReadEncodedStrip(tif, strip, buf, strip_size);
+                       dat8 = buf;
+
+                       if (Info.tiBps==12){
+                               for (i=0; i<ssize; i+=9) {      /*12 bits per pixel*/
+                                       if((index < imgsize)&(index+1 < imgsize)){
+                                               image->comps[0].data[index]   = ( dat8[i+0]<<4 )                |(dat8[i+1]>>4);
+                                               image->comps[1].data[index]   = ((dat8[i+1]& 0x0f)<< 8) | dat8[i+2];
+                                               image->comps[2].data[index]   = ( dat8[i+3]<<4)                 |(dat8[i+4]>>4);
+                                               image->comps[0].data[index+1] = ((dat8[i+4]& 0x0f)<< 8) | dat8[i+5];
+                                               image->comps[1].data[index+1] = ( dat8[i+6] <<4)                |(dat8[i+7]>>4);
+                                               image->comps[2].data[index+1] = ((dat8[i+7]& 0x0f)<< 8) | dat8[i+8];
+                                               index+=2;
+                                       }else
+                                               break;
+                               }
+                       }
+                       else if( Info.tiBps==16){
+                               for (i=0; i<ssize; i+=6) {      /* 16 bits per pixel */
+                                       if(index < imgsize){
+                                               image->comps[0].data[index] = ( dat8[i+1] << 8 ) | dat8[i+0]; // R 
+                                               image->comps[1].data[index] = ( dat8[i+3] << 8 ) | dat8[i+2]; // G 
+                                               image->comps[2].data[index] = ( dat8[i+5] << 8 ) | dat8[i+4]; // B 
+                                               if(parameters->cp_cinema){/* Rounding to 12 bits*/
+                                                       image->comps[0].data[index] = (image->comps[0].data[index] + 0x08) >> 4 ;
+                                                       image->comps[1].data[index] = (image->comps[1].data[index] + 0x08) >> 4 ;
+                                                       image->comps[2].data[index] = (image->comps[2].data[index] + 0x08) >> 4 ;
+                                               }
+                                               index++;
+                                       }else
+                                               break;
+                               }
+                       }
+                       else if ( Info.tiBps==8){
+                               for (i=0; i<ssize; i+=3) {      /* 8 bits per pixel */
+                                       if(index < imgsize){
+                                               image->comps[0].data[index] = dat8[i+0];// R 
+                                               image->comps[1].data[index] = dat8[i+1];// G 
+                                               image->comps[2].data[index] = dat8[i+2];// B 
+                                               if(parameters->cp_cinema){/* Rounding to 12 bits*/
+                                                       image->comps[0].data[index] = image->comps[0].data[index] << 4 ;
+                                                       image->comps[1].data[index] = image->comps[1].data[index] << 4 ;
+                                                       image->comps[2].data[index] = image->comps[2].data[index] << 4 ;
+                                               }
+                                               index++;
+                                       }else
+                                               break;
+                               }
+                       }
+                       else{
+                               fprintf(stderr,"Bits=%d, Only 8,12,16 bits implemented\n",Info.tiBps);
+                               fprintf(stderr,"Aborting\n");
+                               return NULL;
+                       }
+               }
+
+               _TIFFfree(buf);
+               TIFFClose(tif);
+       }else if(Info.tiPhoto == 1) { 
+               /* -->> -->> -->>    
+               Black and White
+               <<-- <<-- <<-- */
+
+               numcomps = 1;
+               color_space = CLRSPC_GRAY;
+               /* initialize image components*/ 
+               memset(&cmptparm[0], 0, sizeof(opj_image_cmptparm_t));
+               cmptparm[0].prec = Info.tiBps;
+               cmptparm[0].bpp = Info.tiBps;
+               cmptparm[0].sgnd = 0;
+               cmptparm[0].dx = subsampling_dx;
+               cmptparm[0].dy = subsampling_dy;
+               cmptparm[0].w = w;
+               cmptparm[0].h = h;
+
+               /* create the image*/ 
+               image = opj_image_create(numcomps, &cmptparm[0], color_space);
+               if(!image) {
+                       TIFFClose(tif);
+                       return NULL;
+               }
+               /* set image offset and reference grid */
+               image->x0 = parameters->image_offset_x0;
+               image->y0 = parameters->image_offset_y0;
+               image->x1 =     !image->x0 ? (w - 1) * subsampling_dx + 1 : image->x0 + (w - 1) * subsampling_dx + 1;
+               image->y1 =     !image->y0 ? (h - 1) * subsampling_dy + 1 : image->y0 + (h - 1) * subsampling_dy + 1;
+
+               buf = _TIFFmalloc(TIFFStripSize(tif));
+               strip_size = 0;
+               strip_size = TIFFStripSize(tif);
+               index = 0;
+               /* Read the Image components*/
+               for (strip = 0; strip < TIFFNumberOfStrips(tif); strip++) {
+                       unsigned char *dat8;
+                       int i, ssize;
+                       ssize = TIFFReadEncodedStrip(tif, strip, buf, strip_size);
+                       dat8 = buf;
+
+                       if (Info.tiBps==12){
+                               for (i=0; i<ssize; i+=3) {      /* 12 bits per pixel*/
+                                       if(index < imgsize){
+                                               image->comps[0].data[index]   = ( dat8[i+0]<<4 )                |(dat8[i+1]>>4) ;
+                                               image->comps[0].data[index+1] = ((dat8[i+1]& 0x0f)<< 8) | dat8[i+2];
+                                               index+=2;
+                                       }else
+                                               break;
+                               }
+                       }
+                       else if( Info.tiBps==16){
+                               for (i=0; i<ssize; i+=2) {      /* 16 bits per pixel */
+                                       if(index < imgsize){
+                                               image->comps[0].data[index] = ( dat8[i+1] << 8 ) | dat8[i+0];
+                                               index++;
+                                       }else
+                                               break;
+                               }
+                       }
+                       else if ( Info.tiBps==8){
+                               for (i=0; i<ssize; i+=1) {      /* 8 bits per pixel */
+                                       if(index < imgsize){
+                                               image->comps[0].data[index] = dat8[i+0];
+                                               index++;
+                                       }else
+                                               break;
+                               }
+                       }
+                       else{
+                               fprintf(stderr,"Bits=%d, Only 8,12,16 bits implemented\n",Info.tiBps);
+                               fprintf(stderr,"Aborting\n");
+                               return NULL;
+                       }
+               }
+
+               _TIFFfree(buf);
+               TIFFClose(tif);
+       }else{
+               fprintf(stderr,"False color format. Only RGB & Grayscale has been implemented\n");
+               fprintf(stderr,"Aborting\n");
+               return NULL;
+       }
+       return image;
+}
+
+/* -->> -->> -->> -->>
+
+       RAW IMAGE FORMAT
+
+ <<-- <<-- <<-- <<-- */
+
+opj_image_t* rawtoimage(const char *filename, opj_cparameters_t *parameters, raw_cparameters_t *raw_cp) {
+       int subsampling_dx = parameters->subsampling_dx;
+       int subsampling_dy = parameters->subsampling_dy;
+
+       FILE *f = NULL;
+       int i, compno, numcomps, w, h;
+       OPJ_COLOR_SPACE color_space;
+       opj_image_cmptparm_t *cmptparm; 
+       opj_image_t * image = NULL;
+       unsigned short ch;
+       
+       if((! (raw_cp->rawWidth & raw_cp->rawHeight & raw_cp->rawComp & raw_cp->rawBitDepth)) == 0)
+       {
+               fprintf(stderr,"\nError: invalid raw image parameters\n");
+               fprintf(stderr,"Please use the Format option -F:\n");
+               fprintf(stderr,"-F rawWidth,rawHeight,rawComp,rawBitDepth,s/u (Signed/Unsigned)\n");
+               fprintf(stderr,"Example: -i lena.raw -o lena.j2k -F 512,512,3,8,u\n");
+               fprintf(stderr,"Aborting\n");
+               return NULL;
+       }
+
+       f = fopen(filename, "rb");
+       if (!f) {
+               fprintf(stderr, "Failed to open %s for reading !!\n", filename);
+               fprintf(stderr,"Aborting\n");
+               return NULL;
+       }
+       numcomps = raw_cp->rawComp;
+       color_space = CLRSPC_SRGB;
+       w = raw_cp->rawWidth;
+       h = raw_cp->rawHeight;
+       cmptparm = (opj_image_cmptparm_t*) malloc(numcomps * sizeof(opj_image_cmptparm_t));
+       
+       /* initialize image components */       
+       memset(&cmptparm[0], 0, numcomps * sizeof(opj_image_cmptparm_t));
+       for(i = 0; i < numcomps; i++) {         
+               cmptparm[i].prec = raw_cp->rawBitDepth;
+               cmptparm[i].bpp = raw_cp->rawBitDepth;
+               cmptparm[i].sgnd = raw_cp->rawSigned;
+               cmptparm[i].dx = subsampling_dx;
+               cmptparm[i].dy = subsampling_dy;
+               cmptparm[i].w = w;
+               cmptparm[i].h = h;
+       }
+       /* create the image */
+       image = opj_image_create(numcomps, &cmptparm[0], color_space);
+       if(!image) {
+               fclose(f);
+               return NULL;
+       }
+       /* set image offset and reference grid */
+       image->x0 = parameters->image_offset_x0;
+       image->y0 = parameters->image_offset_y0;
+       image->x1 = parameters->image_offset_x0 + (w - 1) *     subsampling_dx + 1;
+       image->y1 = parameters->image_offset_y0 + (h - 1) *     subsampling_dy + 1;
+
+       if(raw_cp->rawBitDepth <= 8)
+       {
+               unsigned char value = 0;
+               for(compno = 0; compno < numcomps; compno++) {
+                       for (i = 0; i < w * h; i++) {
+                               if (!fread(&value, 1, 1, f)) {
+                                       fprintf(stderr,"Error reading raw file. End of file probably reached.\n");
+                                       return NULL;
+                               }
+                               image->comps[compno].data[i] = raw_cp->rawSigned?(char)value:value;
+                       }
+               }
+       }
+       else
+       {
+               unsigned short value = 0;
+               for(compno = 0; compno < numcomps; compno++) {
+                       for (i = 0; i < w * h; i++) {
+                               if (!fread(&value, 2, 1, f)) {
+                                       fprintf(stderr,"Error reading raw file. End of file probably reached.\n");
+                                       return NULL;
+                               }
+                               image->comps[compno].data[i] = raw_cp->rawSigned?(short)value:value;
+                       }
+               }
+       }
+
+       if (fread(&ch, 1, 1, f)) {
+               fprintf(stderr,"Warning. End of raw file not reached... processing anyway\n");
+       }
        fclose(f);
-       return 1;
+
+       return image;
+}
+
+int imagetoraw(opj_image_t * image, const char *outfile)
+{
+       FILE *rawFile = NULL;
+       int compno, pixelsToWrite, offset, cont;
+
+       if((image->numcomps * image->x1 * image->y1) == 0)
+       {
+               fprintf(stderr,"\nError: invalid raw image parameters\n");
+               return 1;
+       }
+
+       rawFile = fopen(outfile, "wb");
+       if (!rawFile) {
+               fprintf(stderr, "Failed to open %s for writing !!\n", outfile);
+               return 1;
+       }
+
+       fprintf(stdout,"Raw image characteristics: %d components\n", image->numcomps);
+
+       for(compno = 0; compno < image->numcomps; compno++)
+       {
+               fprintf(stdout,"Component %d characteristics: %dx%dx%d %s\n", compno, image->comps[compno].w,
+                       image->comps[compno].h, image->comps[compno].prec, image->comps[compno].sgnd==1 ? "signed": "unsigned");
+
+               pixelsToWrite = image->comps[compno].w * image->comps[compno].h;
+               offset = 0;
+
+               if(image->comps[compno].prec <= 8)
+               {
+                       if(image->comps[compno].sgnd == 1)
+                       {
+                               signed char curr;
+                               int mask = (1 << image->comps[compno].prec) - 1;
+                               for(cont = 0; cont < pixelsToWrite; cont++)
+                               {                               
+                                       curr = (signed char) (image->comps[compno].data[cont] & mask);
+                                       fwrite(&curr, sizeof(signed char), 1, rawFile);
+                               }
+                       }
+                       else if(image->comps[compno].sgnd == 0)
+                       {
+                               unsigned char curr;
+                               int mask = (1 << image->comps[compno].prec) - 1;
+                               for(cont = 0; cont < pixelsToWrite; cont++)
+                               {                               
+                                       curr = (unsigned char) (image->comps[compno].data[cont] & mask);
+                                       fwrite(&curr, sizeof(unsigned char), 1, rawFile);
+                               }
+                       }
+               }
+               else if(image->comps[compno].prec <= 16)
+               {
+                       if(image->comps[compno].sgnd == 1)
+                       {
+                               signed short int curr;
+                               int mask = (1 << image->comps[compno].prec) - 1;
+                               for(cont = 0; cont < pixelsToWrite; cont++)
+                               {                               
+                                       curr = (signed short int) (image->comps[compno].data[cont] & mask);
+                                       fwrite(&curr, sizeof(signed short int), 1, rawFile);
+                               }
+                       }
+                       else if(image->comps[compno].sgnd == 0)
+                       {
+                               unsigned short int curr;
+                               int mask = (1 << image->comps[compno].prec) - 1;
+                               for(cont = 0; cont < pixelsToWrite; cont++)
+                               {                               
+                                       curr = (unsigned short int) (image->comps[compno].data[cont] & mask);
+                                       fwrite(&curr, sizeof(unsigned short int), 1, rawFile);
+                               }
+                       }
+               }
+               else if (image->comps[compno].prec <= 32)
+               {
+
+
+               }
+               else
+               {
+                       fprintf(stderr,"\nError: invalid precision\n");
+                       return 1;
+               }
+       }
+       fclose(rawFile);
+       return 0;
 }