]> Creatis software - gdcm.git/blob - src/gdcmJpeg2000.cxx
BUG: Trying to debug jasper...
[gdcm.git] / src / gdcmJpeg2000.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmJpeg2000.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/07/11 14:37:53 $
7   Version:   $Revision: 1.26 $
8                                                                                 
9   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10   l'Image). All rights reserved. See Doc/License.txt or
11   http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
12                                                                                 
13      This software is distributed WITHOUT ANY WARRANTY; without even
14      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15      PURPOSE.  See the above copyright notices for more information.
16                                                                                 
17 =========================================================================*/
18 #include "gdcmFileHelper.h"
19 #include "gdcmDebug.h"
20
21 #include <iostream>
22 #include <fstream>
23 #include <jasper/jasper.h>
24
25 namespace gdcm 
26 {
27 //-----------------------------------------------------------------------------
28  /**
29  * \brief   routine for JPEG decompression 
30  * @param raw raw
31  * @param inputdata inputdata
32  * @param inputlength inputlength 
33  * @return 1 on success, 0 on error
34  */
35
36 bool gdcm_read_JPEG2000_file (void* raw, char *inputdata, size_t inputlength)
37 {
38 #if 0
39   std::ofstream out("/tmp/jpeg2000.jpc");
40   out.write((char*)inputdata,inputlength);
41   out.close();
42 #endif
43   jas_init(); //important...
44   jas_stream_t *jasStream = 
45     jas_stream_memopen((char *)inputdata, inputlength);
46     
47   int fmtid;
48   if ((fmtid = jas_image_getfmt(jasStream)) < 0) 
49     {
50     gdcmErrorMacro("unknown image format");
51     return false;
52     }
53
54   // Decode the image. 
55   jas_image_t *jasImage = NULL;
56   if (!(jasImage = jas_image_decode(jasStream, fmtid, 0))) 
57     {
58     gdcmErrorMacro("cannot decode image");
59     return false;
60     }
61
62   // close the stream. 
63   jas_stream_close(jasStream);
64   int numcmpts = jas_image_numcmpts(jasImage);
65   int width = jas_image_cmptwidth(jasImage, 0);
66   int height = jas_image_cmptheight(jasImage, 0);
67   int prec = jas_image_cmptprec(jasImage, 0);
68   int i, j, k;
69
70   // The following should serioulsy be rewritten I cannot believe we need to
71   // do a per pixel decompression, there should be a way to read a full
72   // scanline...
73   if (prec == 8)
74     {
75     uint8_t *data8 = (uint8_t*)raw;
76     for ( i = 0; i < height; i++)
77       for ( j = 0; j < width; j++)
78         for ( k= 0; k < numcmpts; k++)
79           *data8++ = (uint8_t)(jas_image_readcmptsample(jasImage, k, j ,i ));
80     }
81   else if (prec <= 16)
82     {
83     uint16_t *data16 = (uint16_t*)raw;
84     for ( i = 0; i < height; i++) 
85       for ( j = 0; j < width; j++) 
86         for ( k= 0; k < numcmpts; k++)
87           *data16++ = (uint16_t)(jas_image_readcmptsample(jasImage, k, j ,i ));
88     }
89   else if (prec <= 32)
90     {
91     uint32_t *data32 = (uint32_t*)raw;
92     for ( i = 0; i < height; i++) 
93       for ( j = 0; j < width; j++) 
94         for ( k= 0; k < numcmpts; k++)
95           *data32++ = (uint32_t)(jas_image_readcmptsample(jasImage, k, j ,i ));
96     }
97
98   jas_image_destroy(jasImage);
99   jas_image_clearfmts();
100
101   //FIXME
102   //delete the jpeg temp buffer
103 #if 0
104   std::ofstream rawout("/tmp/jpeg2000.raw");
105   rawout.write((char*)raw,height*width*numcmpts*((prec+4)/8));
106   rawout.close();
107 #endif
108   delete[] inputdata;
109
110   return true;
111 }
112
113 //-----------------------------------------------------------------------------
114 } // end namespace gdcm
115