]> Creatis software - gdcm.git/blob - src/gdcmJPEGFragment.cxx
ENH: Pass 2 at cleaning the JPEG mess. Still some work to do, but things are getting...
[gdcm.git] / src / gdcmJPEGFragment.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmJPEGFragment.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/01/31 04:00:04 $
7   Version:   $Revision: 1.11 $
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                                                                                 
19 #include "gdcmJPEGFragment.h"
20 #include "gdcmDebug.h"
21
22 namespace gdcm
23 {
24
25 // For JPEG 2000, body in file gdcmJpeg2000.cxx
26 // Not yet made
27 bool gdcm_read_JPEG2000_file (std::ifstream* fp, void* image_buffer);
28
29 // For JPEG-LS, body in file gdcmJpegLS.cxx
30 // Not yet made
31 bool gdcm_read_JPEGLS_file (std::ifstream* fp, void* image_buffer);
32
33 /**
34  * \brief Default constructor.
35  */
36 JPEGFragment::JPEGFragment()
37 {
38    Offset = 0;
39    Length = 0;
40
41    pImage = 0;
42
43 }
44
45 /**
46  * \brief        Print self.
47  * @param os     Stream to print to.
48  * @param indent Indentation string to be prepended during printing.
49  */
50 void JPEGFragment::Print( std::ostream &os, std::string indent )
51 {
52    os << indent
53       << "JPEG fragment: offset : " <<  Offset
54       << "   length : " <<  Length
55       << std::endl;
56 }
57
58 /**
59  * \brief Decompress 8bits JPEG Fragment
60  * @param fp ifstream to write to
61  * @param buffer     output (data decompress)
62  * @param nBits      8/12 or 16 bits jpeg
63  * @param statesuspension state suspension
64  */
65 void JPEGFragment::DecompressJPEGFramesFromFile(std::ifstream *fp,
66                                                 uint8_t *buffer, int nBits, 
67                                                 int & statesuspension)
68 {
69    // First thing need to reset file to proper position:
70    fp->seekg( Offset, std::ios::beg);
71
72    if ( nBits == 8 )
73    {
74       // JPEG Lossy : call to IJG 6b - 8 bits
75       ReadJPEGFile8( fp, buffer, statesuspension);
76    }
77    else if ( nBits <= 12 )
78    {
79       // JPEG Lossy : call to IJG 6b - 8 bits
80       ReadJPEGFile12 ( fp, buffer, statesuspension);
81    }
82    else if ( nBits <= 16 )
83    {
84       // JPEG Lossy : call to IJG 6b - 8 bits
85       ReadJPEGFile16 ( fp, buffer, statesuspension);
86       //gdcmAssertMacro( IsJPEGLossless );
87    }
88    else
89    {
90       // FIXME : only the bits number is checked,
91       //         NOT the compression method
92
93       // other JPEG lossy not supported
94       gdcmErrorMacro( "Unknown jpeg lossy compression ");
95    }
96 }
97
98 } // end namespace gdcm
99