X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmJPEGFragment.h;h=fa99e09d4a3c42314ffef2ccbd76bf893fdca411;hb=041172b2cbe77450f121c1fa082928d799fdbe53;hp=b8e8ff0b786464de335449537134bf3fdb644fd7;hpb=1d69b92978803204089d270599133917d944c651;p=gdcm.git diff --git a/src/gdcmJPEGFragment.h b/src/gdcmJPEGFragment.h index b8e8ff0b..fa99e09d 100644 --- a/src/gdcmJPEGFragment.h +++ b/src/gdcmJPEGFragment.h @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmJPEGFragment.h,v $ Language: C++ - Date: $Date: 2004/10/12 04:35:46 $ - Version: $Revision: 1.2 $ + Date: $Date: 2005/09/02 07:10:03 $ + Version: $Revision: 1.18 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -21,11 +21,15 @@ #define GDCMJPEGFRAGMENT_H #include "gdcmCommon.h" + +#include +#include + namespace gdcm { - /** - * \brief Utility class for summerizing the informations of a JPEG + * \brief *very* internal class . Shouldn't appear here ! + * Utility class for summerizing the informations of a JPEG * fragment of an "Encapsulated JPEG Compressed Image". * This information is a mix of: * - the fragment offset @@ -37,16 +41,28 @@ namespace gdcm */ class GDCM_EXPORT JPEGFragment { -friend class Document; -friend class File; -friend class PixelConvert; - long Offset; - long Length; - JPEGFragment() - { - Offset = 0; - Length = 0; - } +public: + JPEGFragment(); + void Print( std::ostream &os = std::cout, std::string indent = "" ); + void DecompressJPEGFramesFromFile(std::ifstream *fp, + uint8_t *buffer, int nBits, + int &statesuspension); + + bool ReadJPEGFile8 (std::ifstream *fp, void *image_buffer, int &statesuspension ); + bool ReadJPEGFile12 (std::ifstream *fp, void *image_buffer, int &statesuspension ); + bool ReadJPEGFile16 (std::ifstream *fp, void *image_buffer, int &statesuspension ); + + void SetLength(uint32_t length) { Length = length; } + uint32_t GetLength() { return Length; } + void SetOffset(uint32_t offset) { Offset = offset; } + uint32_t GetOffset() { return Offset; } + uint8_t *GetImage() { return pImage; } + +private: + uint32_t Offset; + uint32_t Length; + + uint8_t *pImage; }; } // end namespace gdcm