]> Creatis software - gdcm.git/blob - src/gdcmHeader.h
* Bug fix on field having a VR = 'UI'. Assume that is a string field
[gdcm.git] / src / gdcmHeader.h
1 // gdcmHeader.h
2 //-----------------------------------------------------------------------------
3 #ifndef GDCMHEADER_H
4 #define GDCMHEADER_H
5
6 #include "gdcmCommon.h"
7 #include "gdcmParser.h"
8
9 //-----------------------------------------------------------------------------
10 /*
11  * \defgroup gdcmHeader
12  * \brief
13  * The purpose of an instance of gdcmHeader is to act as a container of
14  * all the DICOM elements and their corresponding values (and
15  * additionaly the corresponding DICOM dictionary entry) of the header
16  * of a DICOM file.
17  *
18  * The typical usage of instances of class gdcmHeader is to classify a set of
19  * dicom files according to header information e.g. to create a file hierarchy
20  * reflecting the Patient/Study/Serie informations, or extracting a given
21  * SerieId. Accessing the content (image[s] or volume[s]) is beyond the
22  * functionality of this class and belongs to gdmcFile.
23  * \note  The various entries of the explicit value representation (VR) shall
24  *        be managed within a dictionary which is shared by all gdcmHeader
25  *        instances.
26  * \note  The gdcmHeader::Set*Tag* family members cannot be defined as
27  *        protected due to Swig limitations for as Has_a dependency between
28  *        gdcmFile and gdcmHeader.
29  */
30 class GDCM_EXPORT gdcmHeader : public gdcmParser
31 {
32 public:
33    gdcmHeader(bool exception_on_error = false);
34    gdcmHeader(const char *filename, 
35               bool  exception_on_error = false, 
36               bool  enable_sequences   = false);
37               
38    virtual ~gdcmHeader();
39
40 // Standard values and informations contained in the header
41    virtual bool IsReadable(void);
42    bool IsJPEGBaseLineProcess1TransferSyntax(void);
43    bool IsJPEGExtendedProcess2_4TransferSyntax(void); 
44    bool IsJPEGExtendedProcess3_5TransferSyntax(void);
45    bool IsJPEGSpectralSelectionProcess6_8TransferSyntax(void); 
46    bool IsRLELossLessTransferSyntax(void); 
47    bool IsJPEGLossless(void); 
48    bool IsJPEG2000(void); 
49    bool IsDicomV3(void); 
50
51    // Some heuristic based accessors, end user intended 
52    // (to be move to gdcmHeaderHelper?) 
53    int GetXSize(void);  
54    int GetYSize(void);
55    int GetZSize(void);
56    int GetBitsStored(void);
57    int GetBitsAllocated(void);
58    int GetSamplesPerPixel(void);   
59    int GetPlanarConfiguration(void);
60
61    int GetPixelSize(void);   
62    std::string GetPixelType(void);  
63    size_t GetPixelOffset(void);
64    size_t GetPixelAreaLength(void);
65
66    bool   HasLUT(void);
67    int    GetLUTNbits(void);
68    unsigned char * GetLUTRGBA(void);
69
70    std::string GetTransfertSyntaxName(void);
71
72    // When some proprietary shadow groups are disclosed, we can set up
73    // an additional specific dictionary to access extra information.
74    
75    // OK : we still have *ONE* HeaderEntrySet, 
76    // with both Public and Shadow Elements
77    // parsed against THE Public Dictionary and A (single) Shadow Dictionary
78    
79    // TODO Swig int SetShaDict(std::string filename);
80    // TODO Swig int SetPubDict(std::string filename);
81
82 // Entry
83    inline virtual std::string GetEntryByName    (std::string tagName) 
84       { return(gdcmParser::GetEntryByName(tagName)); }
85    inline virtual std::string GetEntryVRByName  (std::string tagName)
86       { return(gdcmParser::GetEntryVRByName(tagName)); }
87    inline virtual std::string GetEntryByNumber  (guint16 group, guint16 element)
88       { return(gdcmParser::GetEntryByNumber(group,element)); }
89    inline virtual std::string GetEntryVRByNumber(guint16 group, guint16 element)
90       { return(gdcmParser::GetEntryVRByNumber(group,element)); }
91
92    inline virtual bool SetEntryByName(std::string content,std::string tagName)
93       { return(gdcmParser::SetEntryByName(content,tagName)); }
94    inline virtual bool SetEntryByNumber(std::string content,guint16 group, guint16 element)
95       { return(gdcmParser::SetEntryByNumber(content,group,element)); }
96
97    inline virtual void UpdateShaEntries(void)
98       { gdcmParser::UpdateShaEntries(); }
99
100 // Read (used in gdcmFile)
101    void SetImageDataSize(size_t ExpectedSize);
102
103 protected:
104    int write(std::ostream&);   
105    int anonymize(std::ostream&);  // FIXME : anonymize should be a friend ?
106
107 private:
108 };
109
110 //-----------------------------------------------------------------------------
111 #endif