1 /*=========================================================================
4 Module: $RCSfile: gdcmJpegLS.cxx,v $
6 Date: $Date: 2005/02/05 01:37:09 $
7 Version: $Revision: 1.3 $
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.
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.
17 =========================================================================*/
18 #include "gdcmFileHelper.h"
19 #include "gdcmDebug.h"
27 //-----------------------------------------------------------------------------
29 * \brief routine for JPEG decompression
30 * @param fp pointer to an already open file descriptor
31 * JPEG-LS encoded image
32 * @param image_buffer to receive uncompressed pixels
33 * @return 1 on success, 0 on error
34 * @warning : not yet made
37 bool gdcm_read_JPEGLS_file (std::ifstream* , void* )
39 gdcmWarningMacro( "Sorry JPEG-LS File not yet taken into account" );
42 } // end namespace gdcm
44 //-----------------------------------------------------------------------------