📄 gdcmjpegfragment.h
字号:
/*=========================================================================
Program: gdcm
Module: $RCSfile: gdcmJPEGFragment.h,v $
Language: C++
Date: $Date: 2006-02-18 12:36:39 $
Version: $Revision: 1.4 $
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 GDCMJPEGFRAGMENT_H
#define GDCMJPEGFRAGMENT_H
#include "gdcmCommon.h"
#include <iostream>
#include <fstream>
namespace gdcm
{
/**
* \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
* - the fragment length
*
* Each instance of this class (they can be as many instances for
* a given Document as they are JPEG fragments and they are
* collected in a \ref JPEGFragmentsInfo )
*/
class GDCM_EXPORT JPEGFragment
{
public:
JPEGFragment();
void Print( std::ostream &os = std::cout, std::string const &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
//-----------------------------------------------------------------------------
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -