6 #include "gdcmCommon.h"
7 #include "gdcmHeader.h"
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
14 class GDCM_EXPORT gdcmFile: public gdcmHeader
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);
23 bool ReadPixelData(void * destination);
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)
32 int WriteBase(std::string FileName, FileType type);
34 gdcmFile(std::string & filename);
35 gdcmFile(const char * filename);
37 // For promotion (performs a deepcopy of pointed header object)
38 // TODO Swig gdcmFile(gdcmHeader* header);
39 // TODO Swig ~gdcmFile();
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);
46 void SetPixelDataSizeFromHeader(void);
47 size_t GetImageDataSize();
48 void * GetImageData();
49 size_t GetImageDataIntoVector(void* destination, size_t MaxSize );
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);
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();
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
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);
76 bool ParsePixelData(void);