/*========================================================================= Program: gdcm Module: $RCSfile: gdcmJPEGFragmentsInfo.h,v $ Language: C++ Date: $Date: 2005/01/28 15:42:22 $ Version: $Revision: 1.15 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*/ #ifndef GDCMJPEGFRAGMENTSINFO_H #define GDCMJPEGFRAGMENTSINFO_H #include "gdcmJPEGFragment.h" #include #include namespace gdcm { /** * \brief Utility class for gathering the informations of the collection * of JPEG fragment[s] (see \ref JPEGFragment) when handling * "Encapsulated JPEG Compressed Images". * The informations on each frame are obtained during the parsing * of a Document (refer to * \ref Document::ComputeJPEGFragmentInfo() ). * They shall be used when (if necessary) decoding the fragments. * * This class is simply a stl list<> of \ref JPEGFragment. */ class GDCM_EXPORT JPEGFragmentsInfo { public: JPEGFragmentsInfo(); ~JPEGFragmentsInfo(); void Print( std::ostream &os = std::cout, std::string const & indent = "" ); size_t GetFragmentsLength(); void ReadAllFragments(std::ifstream *fp, JOCTET *buffer ); void DecompressJPEGFramesFromFile(std::ifstream *fp, uint8_t *buffer, int nBits, int numBytes, int length); void AddFragment(JPEGFragment *fragment); JPEGFragment *GetFirstFragment(); JPEGFragment *GetNextFragment(); unsigned int GetFragmentCount(); private: typedef std::list JPEGFragmentsList; //Some mathieu hack: int StateSuspension; void *SampBuffer; char* pimage; JPEGFragmentsList Fragments; JPEGFragmentsList::iterator ItFragments; }; } // end namespace gdcm //----------------------------------------------------------------------------- #endif