]> Creatis software - gdcm.git/blob - src/gdcmFile.h
- Color problems taken in to account
[gdcm.git] / src / gdcmFile.h
1 // gdcmFile.h
2
3 #ifndef GDCMFILE_H
4 #define GDCMFILE_H
5
6 #include "gdcmCommon.h"
7 #include "gdcmHeader.h"
8
9 ////////////////////////////////////////////////////////////////////////////
10 // In addition to Dicom header exploration, this class is designed
11 // for accessing the image/volume content. One can also use it to
12 // write Dicom files.
13
14 class GDCM_EXPORT gdcmFile: public gdcmHeader
15 {
16 private:
17    void* PixelData;
18    size_t lgrTotale;
19    int Parsed;               // weather already parsed
20    std::string OrigFileName; // To avoid file overwrite
21    void SwapZone(void* im, int swap, int lgr, int nb);
22    
23    bool ReadPixelData(void * destination);
24    
25    int gdcm_read_JPEG_file     (void * image_buffer); // For JPEG 8 Bits
26    int gdcm_read_JPEG_file12   (void * image_buffer); // For JPEG 12 Bits
27    int gdcm_read_JPEG2000_file (void * image_buffer); // For JPEG 2000 (TODO)
28    int gdcm_read_RLE_file      (void * image_buffer); // For Run Length Encoding (TODO) 
29     
30   
31 protected:
32    int WriteBase(std::string FileName, FileType type);
33 public:
34    gdcmFile(std::string & filename);
35    gdcmFile(const char * filename);
36         
37         // For promotion (performs a deepcopy of pointed header object)
38         // TODO Swig gdcmFile(gdcmHeader* header);
39         // TODO Swig ~gdcmFile();
40
41         // On writing purposes. When instance was created through
42         // gdcmFile(std::string filename) then the filename argument MUST be
43         // different from the constructor's one (no overwriting allowed).
44         // TODO Swig int SetFileName(std::string filename);
45
46    void   SetPixelDataSizeFromHeader(void);
47    size_t GetImageDataSize();
48    void * GetImageData();
49    size_t GetImageDataIntoVector(void* destination, size_t MaxSize );
50         
51       // Allocates ExpectedSize bytes of memory at this->Data and copies the
52       // pointed data to it. Copying the image might look useless but
53       // the caller might destroy it's image (without knowing it: think
54       // of a complicated interface where display is done with a library
55       // e.g. VTK) before calling the Write
56    int SetImageData     (void * Data, size_t ExpectedSize);
57       // When the caller is aware we simply point to the data:
58       // TODO int SetImageDataNoCopy (void * Data, size_t ExpectedSize);
59    void SetImageDataSize (size_t ExpectedSize);
60         
61         // Push to disk.
62         // A NE PAS OUBLIER : que fait-on en cas de Transfert Syntax (dans l'entete)
63         // incohérente avec l'ordre des octets en mémoire ? 
64         // TODO Swig int Write();
65         
66         // Ecrit sur disque les pixels d'UNE image
67         // Aucun test n'est fait sur l'"Endiannerie" du processeur.
68         // Ca sera à l'utilisateur d'appeler son Reader correctement
69                 
70    int WriteRawData  (std::string fileName);
71    int WriteDcmImplVR(std::string fileName);
72    int WriteDcmImplVR(const char * fileName);
73    int WriteDcmExplVR(std::string fileName);
74    int WriteAcr      (std::string fileName);
75    
76    bool ParsePixelData(void);
77 };
78
79 #endif