]> Creatis software - gdcm.git/blob - src/gdcmFileHelper.cxx
f0de399a07f43b301377ea4896c74d8080811576
[gdcm.git] / src / gdcmFileHelper.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmFileHelper.cxx,v $
5   Language:  C++
6
7   Date:      $Date: 2005/04/04 15:15:24 $
8   Version:   $Revision: 1.32 $
9                                                                                 
10   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
11   l'Image). All rights reserved. See Doc/License.txt or
12   http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
13                                                                                 
14      This software is distributed WITHOUT ANY WARRANTY; without even
15      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
16      PURPOSE.  See the above copyright notices for more information.
17                                                                                 
18 =========================================================================*/
19
20 #include "gdcmFileHelper.h"
21 #include "gdcmGlobal.h"
22 #include "gdcmTS.h"
23 #include "gdcmDocument.h"
24 #include "gdcmDebug.h"
25 #include "gdcmUtil.h"
26 #include "gdcmBinEntry.h"
27 #include "gdcmValEntry.h"
28 #include "gdcmSeqEntry.h"
29 #include "gdcmSQItem.h"
30 #include "gdcmContentEntry.h"
31 #include "gdcmFile.h"
32 #include "gdcmPixelReadConvert.h"
33 #include "gdcmPixelWriteConvert.h"
34 #include "gdcmDocEntryArchive.h"
35 #include "gdcmDictSet.h"
36
37 #include <fstream>
38
39 /*
40 // ----------------------------- WARNING -------------------------
41
42 These lines will be moved to the document-to-be 'User's Guide'
43
44 // To read an image, user needs a gdcm::File
45 gdcm::File *f1 = new gdcm::File(fileName);
46 // user can now check some values
47 std::string v = f1->GetEntryValue(groupNb,ElementNb);
48 // to get the pixels, user needs a gdcm::FileHelper
49 gdcm::FileHelper *fh1 = new gdcm::FileHelper(f1);
50 // user may ask not to convert Palette to RGB
51 uint8_t *pixels = fh1->GetImageDataRaw();
52 int imageLength = fh1->GetImageDataRawSize();
53 // He can now use the pixels, create a new image, ...
54 uint8_t *userPixels = ...
55
56 To re-write the image, user re-uses the gdcm::FileHelper
57
58 fh1->SetImageData( userPixels, userPixelsLength);
59 fh1->SetTypeToRaw(); // Even if it was possible to convert Palette to RGB
60                      // (WriteMode is set)
61  
62 fh1->SetWriteTypeToDcmExpl(); // he wants Explicit Value Representation
63                               // Little Endian is the default
64                               // no other value is allowed
65                                 (-->SetWriteType(ExplicitVR);)
66                                    -->WriteType = ExplicitVR;
67 fh1->Write(newFileName);      // overwrites the file, if any
68
69 // or :
70 fh1->WriteDcmExplVR(newFileName);
71
72
73 // ----------------------------- WARNING -------------------------
74
75 These lines will be moved to the document-to-be 'Developer's Guide'
76
77 WriteMode : WMODE_RAW / WMODE_RGB
78 WriteType : ImplicitVR, ExplicitVR, ACR, ACR_LIBIDO
79
80 fh1->Write(newFileName);
81    SetWriteFileTypeToImplicitVR() / SetWriteFileTypeToExplicitVR();
82    (modifies TransferSyntax)
83    SetWriteToRaw(); / SetWriteToRGB();
84       (modifies, when necessary : photochromatic interpretation, 
85          samples per pixel, Planar configuration, 
86          bits allocated, bits stored, high bit -ACR 24 bits-
87          Pixels element VR, pushes out the LUT )
88    CheckWriteIntegrity();
89       (checks user given pixels length)
90    FileInternal->Write(fileName,WriteType)
91    fp = opens file(fileName);
92    ComputeGroup0002Length(writetype);
93    BitsAllocated 12->16
94       RemoveEntryNoDestroy(palettes, etc)
95       Document::WriteContent(fp, writetype);
96    RestoreWrite();
97       (moves back to the File all the archived elements)
98    RestoreWriteFileType();
99       (pushes back group 0002, with TransferSyntax)
100 */
101
102
103
104
105 namespace gdcm 
106 {
107 //-------------------------------------------------------------------------
108 // Constructor / Destructor
109 /**
110  * \brief Constructor dedicated to deal with the *pixels* area of a ACR/DICOMV3
111  *        file (gdcm::File only deals with the ... header)
112  *        Opens (in read only and when possible) an existing file and checks
113  *        for DICOM compliance. Returns NULL on failure.
114  *        It will be up to the user to load the pixels into memory
115  * \note  the in-memory representation of all available tags found in
116  *        the DICOM header is post-poned to first header information access.
117  *        This avoid a double parsing of public part of the header when
118  *        one sets an a posteriori shadow dictionary (efficiency can be
119  *        seen as a side effect).   
120  */
121 FileHelper::FileHelper( )
122 {
123    FileInternal = new File( );
124    SelfHeader = true;
125    Initialize();
126 }
127
128 /**
129  * \brief Constructor dedicated to deal with the *pixels* area of a ACR/DICOMV3
130  *        file (File only deals with the ... header)
131  *        Opens (in read only and when possible) an existing file and checks
132  *        for DICOM compliance. Returns NULL on failure.
133  *        It will be up to the user to load the pixels into memory
134  * \note  the in-memory representation of all available tags found in
135  *        the DICOM header is post-poned to first header information access.
136  *        This avoid a double parsing of public part of the header when
137  *        user sets an a posteriori shadow dictionary (efficiency can be
138  *        seen as a side effect).   
139  * @param header already built Header
140  */
141 FileHelper::FileHelper(File *header)
142 {
143    FileInternal = header;
144    SelfHeader = false;
145    Initialize();
146 }
147
148 /**
149  * \brief Constructor dedicated to deal with the *pixels* area of a ACR/DICOMV3
150  *        file (gdcm::File only deals with the ... header)
151  *        Opens (in read only and when possible) an existing file and checks
152  *        for DICOM compliance. Returns NULL on failure.
153  *        It will be up to the user to load the pixels into memory
154  * \note  the in-memory representation of all available tags found in
155  *        the DICOM header is post-poned to first header information access.
156  *        This avoid a double parsing of public part of the header when
157  *        one sets an a posteriori shadow dictionary (efficiency can be
158  *        seen as a side effect).   
159  * @param filename file to be opened for parsing
160  */
161 FileHelper::FileHelper(std::string const &filename )
162 {
163    FileInternal = new File( filename );
164    SelfHeader = true;
165    Initialize();
166 }
167
168 /**
169  * \brief canonical destructor
170  * \note  If the header (gdcm::File) was created by the FileHelper constructor,
171  *        it is destroyed by the FileHelper
172  */
173 FileHelper::~FileHelper()
174
175    if( PixelReadConverter )
176    {
177       delete PixelReadConverter;
178    }
179    if( PixelWriteConverter )
180    {
181       delete PixelWriteConverter;
182    }
183    if( Archive )
184    {
185       delete Archive;
186    }
187
188    if( SelfHeader )
189    {
190       delete FileInternal;
191    }
192    FileInternal = 0;
193 }
194
195 //-----------------------------------------------------------------------------
196 // Public
197 /**
198  * \brief   Accesses an existing DocEntry (i.e. a Dicom Element)
199  *          through it's (group, element) and modifies it's content with
200  *          the given value.
201  * @param   content new value (string) to substitute with
202  * @param   group  group number of the Dicom Element to modify
203  * @param   elem element number of the Dicom Element to modify
204  * \return  false if DocEntry not found
205  */
206 bool FileHelper::SetValEntry(std::string const &content,
207                              uint16_t group, uint16_t elem)
208
209    return FileInternal->SetValEntry(content, group, elem);
210 }
211
212
213 /**
214  * \brief   Accesses an existing DocEntry (i.e. a Dicom Element)
215  *          through it's (group, element) and modifies it's content with
216  *          the given value.
217  * @param   content new value (void*  -> uint8_t*) to substitute with
218  * @param   lgth new value length
219  * @param   group  group number of the Dicom Element to modify
220  * @param   elem element number of the Dicom Element to modify
221  * \return  false if DocEntry not found
222  */
223 bool FileHelper::SetBinEntry(uint8_t *content, int lgth,
224                              uint16_t group, uint16_t elem)
225 {
226    return FileInternal->SetBinEntry(content, lgth, group, elem);
227 }
228
229 /**
230  * \brief   Modifies the value of a given DocEntry (Dicom entry)
231  *          when it exists. Creates it with the given value when unexistant.
232  * @param   content (string)value to be set
233  * @param   group   Group number of the Entry 
234  * @param   elem  Element number of the Entry
235  * \return  pointer to the modified/created Dicom entry (NULL when creation
236  *          failed).
237  */ 
238 ValEntry *FileHelper::InsertValEntry(std::string const &content,
239                                      uint16_t group, uint16_t elem)
240 {
241    return FileInternal->InsertValEntry(content,group,elem);
242 }
243
244 /**
245  * \brief   Modifies the value of a given DocEntry (Dicom entry)
246  *          when it exists. Creates it with the given value when unexistant.
247  *          A copy of the binArea is made to be kept in the Document.
248  * @param   binArea (binary)value to be set
249  * @param   lgth new value length
250  * @param   group   Group number of the Entry 
251  * @param   elem  Element number of the Entry
252  * \return  pointer to the modified/created Dicom entry (NULL when creation
253  *          failed).
254  */
255 BinEntry *FileHelper::InsertBinEntry(uint8_t *binArea, int lgth,
256                                      uint16_t group, uint16_t elem)
257 {
258    return FileInternal->InsertBinEntry(binArea, lgth, group, elem);
259 }
260
261 /**
262  * \brief   Modifies the value of a given DocEntry (Dicom entry)
263  *          when it exists. Creates it, empty (?!) when unexistant.
264  * @param   group   Group number of the Entry 
265  * @param   elem  Element number of the Entry
266  * \return  pointer to the modified/created Dicom entry (NULL when creation
267  *          failed).
268  */
269 SeqEntry *FileHelper::InsertSeqEntry(uint16_t group, uint16_t elem)
270 {
271    return FileInternal->InsertSeqEntry(group, elem);
272 }
273
274 /**
275  * \brief   Get the size of the image data
276  *          If the image can be RGB (with a lut or by default), the size 
277  *          corresponds to the RGB image
278  *         (use GetImageDataRawSize if you want to be sure to get *only*
279  *          the size of the pixels)
280  * @return  The image size
281  */
282 size_t FileHelper::GetImageDataSize()
283 {
284    if ( PixelWriteConverter->GetUserData() )
285    {
286       return PixelWriteConverter->GetUserDataSize();
287    }
288
289    return PixelReadConverter->GetRGBSize();
290 }
291
292 /**
293  * \brief   Get the size of the image data
294  *          If the image could be converted to RGB using a LUT, 
295  *          this transformation is not taken into account by GetImageDataRawSize
296  *          (use GetImageDataSize if you wish)
297  * @return  The raw image size
298  */
299 size_t FileHelper::GetImageDataRawSize()
300 {
301    if ( PixelWriteConverter->GetUserData() )
302    {
303       return PixelWriteConverter->GetUserDataSize();
304    }
305
306    return PixelReadConverter->GetRawSize();
307 }
308
309 /**
310  * \brief   - Allocates necessary memory,
311  *          - Reads the pixels from disk (uncompress if necessary),
312  *          - Transforms YBR pixels, if any, into RGB pixels,
313  *          - Transforms 3 planes R, G, B, if any, into a single RGB Plane
314  *          - Transforms single Grey plane + 3 Palettes into a RGB Plane
315  *          - Copies the pixel data (image[s]/volume[s]) to newly allocated zone.
316  * @return  Pointer to newly allocated pixel data.
317  *          NULL if alloc fails 
318  */
319 uint8_t *FileHelper::GetImageData()
320 {
321    if ( PixelWriteConverter->GetUserData() )
322    {
323       return PixelWriteConverter->GetUserData();
324    }
325
326    if ( ! GetRaw() )
327    {
328       // If the decompression failed nothing can be done.
329       return 0;
330    }
331
332    if ( FileInternal->HasLUT() && PixelReadConverter->BuildRGBImage() )
333    {
334       return PixelReadConverter->GetRGB();
335    }
336    else
337    {
338       // When no LUT or LUT conversion fails, return the Raw
339       return PixelReadConverter->GetRaw();
340    }
341 }
342
343 /**
344  * \brief   Allocates necessary memory, 
345  *          Transforms YBR pixels (if any) into RGB pixels
346  *          Transforms 3 planes R, G, B  (if any) into a single RGB Plane
347  *          Copies the pixel data (image[s]/volume[s]) to newly allocated zone. 
348  *          DOES NOT transform Grey plane + 3 Palettes into a RGB Plane
349  * @return  Pointer to newly allocated pixel data.
350  *          NULL if alloc fails 
351  */
352 uint8_t *FileHelper::GetImageDataRaw ()
353 {
354    return GetRaw();
355 }
356
357 /**
358  * \brief
359  *          Read the pixels from disk (uncompress if necessary),
360  *          Transforms YBR pixels, if any, into RGB pixels
361  *          Transforms 3 planes R, G, B, if any, into a single RGB Plane
362  *          Transforms single Grey plane + 3 Palettes into a RGB Plane   
363  *          Copies at most MaxSize bytes of pixel data to caller allocated
364  *          memory space.
365  * \warning This function allows people that want to build a volume
366  *          from an image stack *not to* have, first to get the image pixels, 
367  *          and then move them to the volume area.
368  *          It's absolutely useless for any VTK user since vtk chooses 
369  *          to invert the lines of an image, that is the last line comes first
370  *          (for some axis related reasons?). Hence he will have 
371  *          to load the image line by line, starting from the end.
372  *          VTK users have to call GetImageData
373  *     
374  * @param   destination Address (in caller's memory space) at which the
375  *          pixel data should be copied
376  * @param   maxSize Maximum number of bytes to be copied. When MaxSize
377  *          is not sufficient to hold the pixel data the copy is not
378  *          executed (i.e. no partial copy).
379  * @return  On success, the number of bytes actually copied. Zero on
380  *          failure e.g. MaxSize is lower than necessary.
381  */
382 size_t FileHelper::GetImageDataIntoVector (void *destination, size_t maxSize)
383 {
384    if ( ! GetRaw() )
385    {
386       // If the decompression failed nothing can be done.
387       return 0;
388    }
389
390    if ( FileInternal->HasLUT() && PixelReadConverter->BuildRGBImage() )
391    {
392       if ( PixelReadConverter->GetRGBSize() > maxSize )
393       {
394          gdcmWarningMacro( "Pixel data bigger than caller's expected MaxSize");
395          return 0;
396       }
397       memcpy( destination,
398               (void*)PixelReadConverter->GetRGB(),
399               PixelReadConverter->GetRGBSize() );
400       return PixelReadConverter->GetRGBSize();
401    }
402
403    // Either no LUT conversion necessary or LUT conversion failed
404    if ( PixelReadConverter->GetRawSize() > maxSize )
405    {
406       gdcmWarningMacro( "Pixel data bigger than caller's expected MaxSize");
407       return 0;
408    }
409    memcpy( destination,
410            (void*)PixelReadConverter->GetRaw(),
411            PixelReadConverter->GetRawSize() );
412    return PixelReadConverter->GetRawSize();
413 }
414
415 /**
416  * \brief   Points the internal pointer to the callers inData
417  *          image representation, BUT WITHOUT COPYING THE DATA.
418  *          'image' Pixels are presented as C-like 2D arrays : line per line.
419  *          'volume'Pixels are presented as C-like 3D arrays : plane per plane 
420  * \warning Since the pixels are not copied, it is the caller's responsability
421  *          not to deallocate its data before gdcm uses them (e.g. with
422  *          the Write() method )
423  * @param inData user supplied pixel area (uint8_t* is just for the compiler.
424  *               user is allowed to pass any kind of pixelsn since the size is
425  *               given in bytes) 
426  * @param expectedSize total image size, *in Bytes*
427  */
428 void FileHelper::SetImageData(uint8_t *inData, size_t expectedSize)
429 {
430    SetUserData(inData, expectedSize);
431 }
432
433 /**
434  * \brief   Set the image data defined by the user
435  * \warning When writting the file, this data are get as default data to write
436  * @param inData user supplied pixel area (uint8_t* is just for the compiler.
437  *               user is allowed to pass any kind of pixels since the size is
438  *               given in bytes) 
439  * @param expectedSize total image size, *in Bytes* 
440  */
441 void FileHelper::SetUserData(uint8_t *inData, size_t expectedSize)
442 {
443    PixelWriteConverter->SetUserData(inData, expectedSize);
444 }
445
446 /**
447  * \brief   Get the image data defined by the user
448  * \warning When writting the file, this data are get as default data to write
449  */
450 uint8_t *FileHelper::GetUserData()
451 {
452    return PixelWriteConverter->GetUserData();
453 }
454
455 /**
456  * \brief   Get the image data size defined by the user
457  * \warning When writting the file, this data are get as default data to write
458  */
459 size_t FileHelper::GetUserDataSize()
460 {
461    return PixelWriteConverter->GetUserDataSize();
462 }
463
464 /**
465  * \brief   Get the image data from the file.
466  *          If a LUT is found, the data are expanded to be RGB
467  */
468 uint8_t *FileHelper::GetRGBData()
469 {
470    return PixelReadConverter->GetRGB();
471 }
472
473 /**
474  * \brief   Get the image data size from the file.
475  *          If a LUT is found, the data are expanded to be RGB
476  */
477 size_t FileHelper::GetRGBDataSize()
478 {
479    return PixelReadConverter->GetRGBSize();
480 }
481
482 /**
483  * \brief   Get the image data from the file.
484  *          Even when a LUT is found, the data are not expanded to RGB!
485  */
486 uint8_t *FileHelper::GetRawData()
487 {
488    return PixelReadConverter->GetRaw();
489 }
490
491 /**
492  * \brief   Get the image data size from the file.
493  *          Even when a LUT is found, the data are not expanded to RGB!
494  */
495 size_t FileHelper::GetRawDataSize()
496 {
497    return PixelReadConverter->GetRawSize();
498 }
499
500 /**
501  * \brief Access to the underlying \ref PixelReadConverter RGBA LUT
502  */
503 uint8_t* FileHelper::GetLutRGBA()
504 {
505    return PixelReadConverter->GetLutRGBA();
506 }
507
508 /**
509  * \brief Writes on disk A SINGLE Dicom file
510  *        NO test is performed on  processor "Endiannity".
511  *        It's up to the user to call his Reader properly
512  * @param fileName name of the file to be created
513  *                 (any already existing file is over written)
514  * @return false if write fails
515  */
516 bool FileHelper::WriteRawData(std::string const &fileName)
517 {
518    std::ofstream fp1(fileName.c_str(), std::ios::out | std::ios::binary );
519    if (!fp1)
520    {
521       gdcmWarningMacro( "Fail to open (write) file:" << fileName.c_str());
522       return false;
523    }
524
525    if( PixelWriteConverter->GetUserData() )
526    {
527       fp1.write( (char*)PixelWriteConverter->GetUserData(), 
528                  PixelWriteConverter->GetUserDataSize() );
529    }
530    else if ( PixelReadConverter->GetRGB() )
531    {
532       fp1.write( (char*)PixelReadConverter->GetRGB(), 
533                  PixelReadConverter->GetRGBSize());
534    }
535    else if ( PixelReadConverter->GetRaw() )
536    {
537       fp1.write( (char*)PixelReadConverter->GetRaw(), 
538                  PixelReadConverter->GetRawSize());
539    }
540    else
541    {
542       gdcmErrorMacro( "Nothing written." );
543    }
544
545    fp1.close();
546
547    return true;
548 }
549
550 /**
551  * \brief Writes on disk A SINGLE Dicom file, 
552  *        using the Implicit Value Representation convention
553  *        NO test is performed on  processor "Endiannity".
554  * @param fileName name of the file to be created
555  *                 (any already existing file is overwritten)
556  * @return false if write fails
557  */
558
559 bool FileHelper::WriteDcmImplVR (std::string const &fileName)
560 {
561    SetWriteTypeToDcmImplVR();
562    return Write(fileName);
563 }
564
565 /**
566 * \brief Writes on disk A SINGLE Dicom file, 
567  *        using the Explicit Value Representation convention
568  *        NO test is performed on  processor "Endiannity". 
569  * @param fileName name of the file to be created
570  *                 (any already existing file is overwritten)
571  * @return false if write fails
572  */
573
574 bool FileHelper::WriteDcmExplVR (std::string const &fileName)
575 {
576    SetWriteTypeToDcmExplVR();
577    return Write(fileName);
578 }
579
580 /**
581  * \brief Writes on disk A SINGLE Dicom file, 
582  *        using the ACR-NEMA convention
583  *        NO test is performed on  processor "Endiannity".
584  *        (a l'attention des logiciels cliniques 
585  *        qui ne prennent en entrée QUE des images ACR ...
586  * \warning if a DICOM_V3 header is supplied,
587  *         groups < 0x0008 and shadow groups are ignored
588  * \warning NO TEST is performed on processor "Endiannity".
589  * @param fileName name of the file to be created
590  *                 (any already existing file is overwritten)
591  * @return false if write fails
592  */
593
594 bool FileHelper::WriteAcr (std::string const &fileName)
595 {
596    SetWriteTypeToAcr();
597    return Write(fileName);
598 }
599
600 /**
601  * \brief Writes on disk A SINGLE Dicom file, 
602  * @param fileName name of the file to be created
603  *                 (any already existing file is overwritten)
604  * @return false if write fails
605  */
606 bool FileHelper::Write(std::string const &fileName)
607 {
608    switch(WriteType)
609    {
610       case ImplicitVR:
611          SetWriteFileTypeToImplicitVR();
612          CheckMandatoryElements();
613          break;
614       case Unknown:  // should never happen; ExplicitVR is the default value
615       case ExplicitVR:
616          SetWriteFileTypeToExplicitVR();
617          CheckMandatoryElements();
618          break;
619       case ACR:
620       case ACR_LIBIDO:
621       // Just to avoid further trouble if user create a file ex-nihilo,
622       // wants to write it as an ACR-NEMA file,
623       // and forget to create any Entry belonging to group 0008
624       // (shame on him !)
625       // We add Recognition Code (RET)
626         if ( ! FileInternal->GetValEntry(0x0008, 0x0010) )
627             FileInternal->InsertValEntry("", 0x0008, 0x0010);
628          SetWriteFileTypeToACR();
629          break;
630          SetWriteFileTypeToExplicitVR();
631          CheckMandatoryElements();
632    }
633
634    // --------------------------------------------------------------
635    // Special Patch to allow gdcm to re-write ACR-LibIDO formated images
636    //
637    // if recognition code tells us we dealt with a LibIDO image
638    // we reproduce on disk the switch between lineNumber and columnNumber
639    // just before writting ...
640    /// \todo the best trick would be *change* the recognition code
641    ///       but pb expected if user deals with, e.g. COMPLEX images
642    
643    if( WriteType == ACR_LIBIDO )
644    {
645       SetWriteToLibido();
646    }
647    else
648    {
649       SetWriteToNoLibido();
650    }
651    // ----------------- End of Special Patch ----------------
652   
653    switch(WriteMode)
654    {
655       case WMODE_RAW :
656          SetWriteToRaw(); // modifies and pushes to the archive, when necessary
657          break;
658       case WMODE_RGB :
659          SetWriteToRGB(); // modifies and pushes to the archive, when necessary
660          break;
661    }
662
663    bool check = CheckWriteIntegrity(); // verifies length
664    if(check)
665    {
666       check = FileInternal->Write(fileName,WriteType);
667    }
668
669    RestoreWrite();
670    RestoreWriteFileType();
671    RestoreWriteMandatory();
672
673    // --------------------------------------------------------------
674    // Special Patch to allow gdcm to re-write ACR-LibIDO formated images
675    // 
676    // ...and we restore the header to be Dicom Compliant again 
677    // just after writting
678    RestoreWriteOfLibido();
679    // ----------------- End of Special Patch ----------------
680
681    return check;
682 }
683
684 //-----------------------------------------------------------------------------
685 // Protected
686 /**
687  * \brief Checks the write integrity
688  *
689  * The tests made are :
690  *  - verify the size of the image to write with the possible write
691  *    when the user set an image data
692  * @return true if check is successfull
693  */
694 bool FileHelper::CheckWriteIntegrity()
695 {
696    if(PixelWriteConverter->GetUserData())
697    {
698       int numberBitsAllocated = FileInternal->GetBitsAllocated();
699       if ( numberBitsAllocated == 0 || numberBitsAllocated == 12 )
700       {
701          numberBitsAllocated = 16;
702       }
703
704       size_t decSize = FileInternal->GetXSize()
705                     * FileInternal->GetYSize() 
706                     * FileInternal->GetZSize()
707                     * ( numberBitsAllocated / 8 )
708                     * FileInternal->GetSamplesPerPixel();
709       size_t rgbSize = decSize;
710       if( FileInternal->HasLUT() )
711          rgbSize = decSize * 3;
712
713       switch(WriteMode)
714       {
715          case WMODE_RAW :
716             if( decSize!=PixelWriteConverter->GetUserDataSize() )
717             {
718                gdcmWarningMacro( "Data size (Raw) is incorrect. Should be " 
719                            << decSize << " / Found :" 
720                            << PixelWriteConverter->GetUserDataSize() );
721                return false;
722             }
723             break;
724          case WMODE_RGB :
725             if( rgbSize!=PixelWriteConverter->GetUserDataSize() )
726             {
727                gdcmWarningMacro( "Data size (RGB) is incorrect. Should be " 
728                           << decSize << " / Found " 
729                           << PixelWriteConverter->GetUserDataSize() );
730                return false;
731             }
732             break;
733       }
734    }
735    
736    return true;
737 }
738
739 /**
740  * \brief Updates the File to write RAW data (as opposed to RGB data)
741  *       (modifies, when necessary, photochromatic interpretation, 
742  *       bits allocated, Pixels element VR)
743  */ 
744 void FileHelper::SetWriteToRaw()
745 {
746    if( FileInternal->GetNumberOfScalarComponents() == 3 
747     && !FileInternal->HasLUT())
748    {
749       SetWriteToRGB();
750    } 
751    else
752    {
753       ValEntry *photInt = CopyValEntry(0x0028,0x0004);
754       if(FileInternal->HasLUT())
755       {
756          photInt->SetValue("PALETTE COLOR ");
757       }
758       else
759       {
760          photInt->SetValue("MONOCHROME2 ");
761       }
762
763       PixelWriteConverter->SetReadData(PixelReadConverter->GetRaw(),
764                                        PixelReadConverter->GetRawSize());
765
766       std::string vr = "OB";
767       if( FileInternal->GetBitsAllocated()>8 )
768          vr = "OW";
769       if( FileInternal->GetBitsAllocated()==24 ) // For RGB ACR files 
770          vr = "OB";
771       BinEntry *pixel = 
772          CopyBinEntry(GetFile()->GetGrPixel(),GetFile()->GetNumPixel(),vr);
773       pixel->SetValue(GDCM_BINLOADED);
774       pixel->SetBinArea(PixelWriteConverter->GetData(),false);
775       pixel->SetLength(PixelWriteConverter->GetDataSize());
776
777       Archive->Push(photInt);
778       Archive->Push(pixel);
779    }
780 }
781
782 /**
783  * \brief Updates the File to write RGB data (as opposed to RAW data)
784  *       (modifies, when necessary, photochromatic interpretation, 
785  *       samples per pixel, Planar configuration, 
786  *       bits allocated, bits stored, high bit -ACR 24 bits-
787  *       Pixels element VR, pushes out the LUT, )
788  */ 
789 void FileHelper::SetWriteToRGB()
790 {
791    if(FileInternal->GetNumberOfScalarComponents()==3)
792    {
793       PixelReadConverter->BuildRGBImage();
794       
795       ValEntry *spp = CopyValEntry(0x0028,0x0002);
796       spp->SetValue("3 ");
797
798       ValEntry *planConfig = CopyValEntry(0x0028,0x0006);
799       planConfig->SetValue("0 ");
800
801       ValEntry *photInt = CopyValEntry(0x0028,0x0004);
802       photInt->SetValue("RGB ");
803
804       if(PixelReadConverter->GetRGB())
805       {
806          PixelWriteConverter->SetReadData(PixelReadConverter->GetRGB(),
807                                           PixelReadConverter->GetRGBSize());
808       }
809       else // Raw data
810       {
811          PixelWriteConverter->SetReadData(PixelReadConverter->GetRaw(),
812                                           PixelReadConverter->GetRawSize());
813       }
814
815       std::string vr = "OB";
816       if( FileInternal->GetBitsAllocated()>8 )
817          vr = "OW";
818       if( FileInternal->GetBitsAllocated()==24 ) // For RGB ACR files 
819          vr = "OB";
820       BinEntry *pixel = 
821          CopyBinEntry(GetFile()->GetGrPixel(),GetFile()->GetNumPixel(),vr);
822       pixel->SetValue(GDCM_BINLOADED);
823       pixel->SetBinArea(PixelWriteConverter->GetData(),false);
824       pixel->SetLength(PixelWriteConverter->GetDataSize());
825
826       Archive->Push(spp);
827       Archive->Push(planConfig);
828       Archive->Push(photInt);
829       Archive->Push(pixel);
830
831       // Remove any LUT
832       Archive->Push(0x0028,0x1101);
833       Archive->Push(0x0028,0x1102);
834       Archive->Push(0x0028,0x1103);
835       Archive->Push(0x0028,0x1201);
836       Archive->Push(0x0028,0x1202);
837       Archive->Push(0x0028,0x1203);
838
839       // For old '24 Bits' ACR-NEMA
840       // Thus, we have a RGB image and the bits allocated = 24 and 
841       // samples per pixels = 1 (in the read file)
842       if(FileInternal->GetBitsAllocated()==24) 
843       {
844          ValEntry *bitsAlloc = CopyValEntry(0x0028,0x0100);
845          bitsAlloc->SetValue("8 ");
846
847          ValEntry *bitsStored = CopyValEntry(0x0028,0x0101);
848          bitsStored->SetValue("8 ");
849
850          ValEntry *highBit = CopyValEntry(0x0028,0x0102);
851          highBit->SetValue("7 ");
852
853          Archive->Push(bitsAlloc);
854          Archive->Push(bitsStored);
855          Archive->Push(highBit);
856       }
857    }
858    else
859    {
860       SetWriteToRaw();
861    }
862 }
863
864 /**
865  * \brief Restore the File write mode  
866  */ 
867 void FileHelper::RestoreWrite()
868 {
869    Archive->Restore(0x0028,0x0002);
870    Archive->Restore(0x0028,0x0004);
871    Archive->Restore(0x0028,0x0006);
872    Archive->Restore(GetFile()->GetGrPixel(),GetFile()->GetNumPixel());
873
874    // For old ACR-NEMA (24 bits problem)
875    Archive->Restore(0x0028,0x0100);
876    Archive->Restore(0x0028,0x0101);
877    Archive->Restore(0x0028,0x0102);
878
879    // For the LUT
880    Archive->Restore(0x0028,0x1101);
881    Archive->Restore(0x0028,0x1102);
882    Archive->Restore(0x0028,0x1103);
883    Archive->Restore(0x0028,0x1201);
884    Archive->Restore(0x0028,0x1202);
885    Archive->Restore(0x0028,0x1203);
886
887    // group 0002 may be pushed out for ACR-NEMA writting purposes 
888    Archive->Restore(0x0002,0x0000);
889    Archive->Restore(0x0002,0x0001);
890    Archive->Restore(0x0002,0x0002);
891    Archive->Restore(0x0002,0x0003);
892    Archive->Restore(0x0002,0x0010);
893    Archive->Restore(0x0002,0x0012);
894    Archive->Restore(0x0002,0x0013);
895    Archive->Restore(0x0002,0x0016);
896    Archive->Restore(0x0002,0x0100);
897    Archive->Restore(0x0002,0x0102);
898 }
899
900 /**
901  * \brief Pushes out the whole group 0002
902  *        FIXME : better, set a flag to tell the writer not to write it ...
903  *        FIXME : method should probably have an other name !
904  *                SetWriteFileTypeToACR is NOT opposed to 
905  *                SetWriteFileTypeToExplicitVR and SetWriteFileTypeToImplicitVR
906  */ 
907 void FileHelper::SetWriteFileTypeToACR()
908 {
909    Archive->Push(0x0002,0x0000);
910    Archive->Push(0x0002,0x0001);
911    Archive->Push(0x0002,0x0002);
912    Archive->Push(0x0002,0x0003);
913    Archive->Push(0x0002,0x0010);
914    Archive->Push(0x0002,0x0012);
915    Archive->Push(0x0002,0x0013);
916    Archive->Push(0x0002,0x0016);
917    Archive->Push(0x0002,0x0100);
918    Archive->Push(0x0002,0x0102);
919 }
920
921 /**
922  * \brief Sets in the File the TransferSyntax to 'Explicit VR Little Endian"   
923  */ 
924 void FileHelper::SetWriteFileTypeToExplicitVR()
925 {
926    std::string ts = Util::DicomString( 
927       Global::GetTS()->GetSpecialTransferSyntax(TS::ExplicitVRLittleEndian) );
928
929    ValEntry *tss = CopyValEntry(0x0002,0x0010);
930    tss->SetValue(ts);
931
932    Archive->Push(tss);
933 }
934
935 /**
936  * \brief Sets in the File the TransferSyntax to 'Implicit VR Little Endian"   
937  */ 
938 void FileHelper::SetWriteFileTypeToImplicitVR()
939 {
940    std::string ts = Util::DicomString(
941       Global::GetTS()->GetSpecialTransferSyntax(TS::ImplicitVRLittleEndian) );
942
943    ValEntry *tss = CopyValEntry(0x0002,0x0010);
944    tss->SetValue(ts);
945
946    Archive->Push(tss);
947 }
948
949
950 /**
951  * \brief Restore in the File the initial group 0002
952  */ 
953 void FileHelper::RestoreWriteFileType()
954 {
955 }
956
957 /**
958  * \brief Set the Write not to Libido format
959  */ 
960 void FileHelper::SetWriteToLibido()
961 {
962    ValEntry *oldRow = dynamic_cast<ValEntry *>
963                 (FileInternal->GetDocEntry(0x0028, 0x0010));
964    ValEntry *oldCol = dynamic_cast<ValEntry *>
965                 (FileInternal->GetDocEntry(0x0028, 0x0011));
966    
967    if( oldRow && oldCol )
968    {
969       std::string rows, columns; 
970
971       ValEntry *newRow=new ValEntry(oldRow->GetDictEntry());
972       ValEntry *newCol=new ValEntry(oldCol->GetDictEntry());
973
974       newRow->Copy(oldCol);
975       newCol->Copy(oldRow);
976
977       newRow->SetValue(oldCol->GetValue());
978       newCol->SetValue(oldRow->GetValue());
979
980       Archive->Push(newRow);
981       Archive->Push(newCol);
982    }
983
984    ValEntry *libidoCode = CopyValEntry(0x0008,0x0010);
985    libidoCode->SetValue("ACRNEMA_LIBIDO_1.1");
986    Archive->Push(libidoCode);
987 }
988
989 /**
990  * \brief Set the Write not to No Libido format
991  */ 
992 void FileHelper::SetWriteToNoLibido()
993 {
994    ValEntry *recCode = dynamic_cast<ValEntry *>
995                 (FileInternal->GetDocEntry(0x0008,0x0010));
996    if( recCode )
997    {
998       if( recCode->GetValue() == "ACRNEMA_LIBIDO_1.1" )
999       {
1000          ValEntry *libidoCode = CopyValEntry(0x0008,0x0010);
1001          libidoCode->SetValue("");
1002          Archive->Push(libidoCode);
1003       }
1004    }
1005 }
1006
1007 /**
1008  * \brief Restore the Write format
1009  */ 
1010 void FileHelper::RestoreWriteOfLibido()
1011 {
1012    Archive->Restore(0x0028,0x0010);
1013    Archive->Restore(0x0028,0x0011);
1014    Archive->Restore(0x0008,0x0010);
1015
1016    // Restore 'LibIDO-special' entries, if any
1017    Archive->Restore(0x0028,0x0015);
1018    Archive->Restore(0x0028,0x0016);
1019    Archive->Restore(0x0028,0x0017);
1020    Archive->Restore(0x0028,0x00199);
1021 }
1022
1023 /**
1024  * \brief Duplicates a ValEntry or creates it.
1025  * @param   group   Group number of the Entry 
1026  * @param   elem  Element number of the Entry
1027  * \return  pointer to the new Val Entry (NULL when creation failed).          
1028  */ 
1029 ValEntry *FileHelper::CopyValEntry(uint16_t group, uint16_t elem)
1030 {
1031    DocEntry *oldE = FileInternal->GetDocEntry(group, elem);
1032    ValEntry *newE;
1033
1034    if( oldE )
1035    {
1036       newE = new ValEntry(oldE->GetDictEntry());
1037       newE->Copy(oldE);
1038    }
1039    else
1040    {
1041       newE = GetFile()->NewValEntry(group, elem);
1042    }
1043
1044    return newE;
1045 }
1046
1047 /**
1048  * \brief   Duplicates a BinEntry or creates it.
1049  * @param   group   Group number of the Entry 
1050  * @param   elem  Element number of the Entry
1051  * @param   vr  Value Representation of the Entry
1052  *          FIXME : what is it used for?
1053  * \return  pointer to the new Bin Entry (NULL when creation failed).
1054  */ 
1055 BinEntry *FileHelper::CopyBinEntry(uint16_t group, uint16_t elem,
1056                                    const std::string &vr)
1057 {
1058    DocEntry *oldE = FileInternal->GetDocEntry(group, elem);
1059    BinEntry *newE;
1060
1061    if( oldE ) 
1062       if( oldE->GetVR()!=vr )
1063          oldE = NULL;
1064
1065    if( oldE )
1066    {
1067       newE = new BinEntry(oldE->GetDictEntry());
1068       newE->Copy(oldE);
1069    }
1070    else
1071    {
1072       newE = GetFile()->NewBinEntry(group, elem, vr);
1073    }
1074
1075    return newE;
1076 }
1077
1078 /**
1079  * \brief   This method is called automatically, just before writting
1080  *         in order to produce a 'True Dicom V3' image
1081  *         We cannot know *how* the user made the File (reading an old ACR-NEMA
1082  *         file or a not very clean DICOM file ...) 
1083  *          
1084  *          Just before writting :
1085  *             - we check the Entries
1086  *             - we create the mandatory entries if they are missing
1087  *             - we modify the values if necessary
1088  *             - we push the sensitive entries to the Archive
1089  *          The writing process will restore the entries as they where before 
1090  *          entering FileHelper::CheckMandatoryElements, so the user will always
1091  *          see the entries just as he left them.
1092  * 
1093  * \todo : - warn the user if we had to add some entries :
1094  *         even if a mandatory entry is missing, we add it, with a default value
1095  *         (we don't want to give up the writting process if user forgot to
1096  *         specify Lena's Patient ID, for instance ...)
1097  *         - read the whole PS 3.3 Part of DICOM  (890 pages)
1098  *         and write a *full* checker (probably one method per Modality ...)
1099  *         Any contribution is welcome. 
1100  *         - write a user callable full checker, to allow post reading
1101  *         and/or pre writting image consistency check.           
1102  */ 
1103  
1104 void FileHelper::CheckMandatoryElements()
1105 {
1106    // just to remember : 'official' 0002 group
1107
1108    //0002 0000 UL 1 Meta Group Length
1109    //0002 0001 OB 1 File Meta Information Version
1110    //0002 0002 UI 1 Media Stored SOP Class UID
1111    //0002 0003 UI 1 Media Stored SOP Instance UID
1112    //0002 0010 UI 1 Transfer Syntax UID
1113    //0002 0012 UI 1 Implementation Class UID
1114    //0002 0013 SH 1 Implementation Version Name
1115    //0002 0016 AE 1 Source Application Entity Title
1116    //0002 0100 UI 1 Private Information Creator
1117    //0002 0102 OB 1 Private Information
1118   
1119    // Create them if not found
1120    // Always modify the value
1121    // Push the entries to the archive.
1122    ValEntry *e_0002_0000 = CopyValEntry(0x0002,0x0000);
1123       e_0002_0000->SetValue("0"); // for the moment
1124       Archive->Push(e_0002_0000);
1125   
1126    BinEntry *e_0002_0001 = CopyBinEntry(0x0002,0x0001, "OB");
1127       e_0002_0001->SetBinArea((uint8_t*)Util::GetFileMetaInformationVersion(),
1128                                false);
1129       e_0002_0001->SetLength(2);
1130       Archive->Push(e_0002_0001);
1131
1132    ValEntry *e_0002_0002 = CopyValEntry(0x0002,0x0002);
1133       // [Secondary Capture Image Storage]
1134       e_0002_0002->SetValue("1.2.840.10008.5.1.4.1.1.7"); 
1135       Archive->Push(e_0002_0002);
1136  
1137    // 'Media Stored SOP Instance UID'   
1138    ValEntry *e_0002_0003 = CopyValEntry(0x0002,0x0003);
1139       e_0002_0003->SetValue(Util::CreateUniqueUID());
1140       Archive->Push(e_0002_0003); 
1141
1142    // 'Implementation Class UID'
1143    ValEntry *e_0002_0012 = CopyValEntry(0x0002,0x0012);
1144       e_0002_0012->SetValue(Util::CreateUniqueUID());
1145       Archive->Push(e_0002_0012); 
1146
1147    // 'Implementation Version Name'
1148    ValEntry *e_0002_0013 = CopyValEntry(0x0002,0x0013);
1149       e_0002_0013->SetValue("GDCM 1.0");
1150       Archive->Push(e_0002_0013);
1151
1152    //'Source Application Entity Title' Not Mandatory
1153    //ValEntry *e_0002_0016 = CopyValEntry(0x0002,0x0016);
1154    //   e_0002_0016->SetValue("1.2.840.10008.5.1.4.1.1.7");
1155    //   Archive->Push(e_0002_0016);
1156
1157    // Push out 'LibIDO-special' entries, if any
1158    Archive->Push(0x0028,0x0015);
1159    Archive->Push(0x0028,0x0016);
1160    Archive->Push(0x0028,0x0017);
1161    Archive->Push(0x0028,0x00199);
1162
1163    // --- Check UID-related Entries ---
1164
1165    // If 'SOP Class UID' exists ('true DICOM' image)
1166    // we create the 'Source Image Sequence' SeqEntry
1167    // to hold informations about the Source Image
1168
1169    ValEntry *e_0008_0016 = FileInternal->GetValEntry(0x0008, 0x0016);
1170    if ( e_0008_0016 != 0 )
1171    {
1172       // Create 'Source Image Sequence' SeqEntry
1173       SeqEntry *s = new SeqEntry (
1174             Global::GetDicts()->GetDefaultPubDict()->GetEntry(0x0008, 0x2112) );
1175       SQItem *sqi = new SQItem(1);
1176       // (we assume 'SOP Instance UID' exists too) 
1177       // create 'Referenced SOP Class UID'
1178       ValEntry *e_0008_1150 = new ValEntry(
1179             Global::GetDicts()->GetDefaultPubDict()->GetEntry(0x0008, 0x1150) );
1180       e_0008_1150->SetValue( e_0008_0016->GetValue());
1181       sqi->AddEntry(e_0008_1150);
1182       
1183       // create 'Referenced SOP Instance UID'
1184       ValEntry *e_0008_0018 = FileInternal->GetValEntry(0x0008, 0x0018);
1185       ValEntry *e_0008_1155 = new ValEntry(
1186             Global::GetDicts()->GetDefaultPubDict()->GetEntry(0x0008, 0x1155) );
1187       e_0008_1155->SetValue( e_0008_0018->GetValue());
1188       sqi->AddEntry(e_0008_1155);
1189
1190       s->AddSQItem(sqi,1); 
1191       // temporarily replaces any previous 'Source Image Sequence' 
1192       Archive->Push(s);
1193  
1194       // 'Image Type' (The written image is no longer an 'ORIGINAL' one)
1195       ValEntry *e_0008_0008 = CopyValEntry(0x0008,0x0008);
1196       e_0008_0008->SetValue("DERIVED\\PRIMARY");
1197       Archive->Push(e_0008_0008);
1198    } 
1199    else
1200    {
1201       // There was no 'SOP Class UID'.
1202       // the source image was NOT a true Dicom one.
1203       // We consider the image is a 'Secondary Capture' one
1204       // SOP Class UID
1205       e_0008_0016  =  new ValEntry( 
1206             Global::GetDicts()->GetDefaultPubDict()->GetEntry(0x0008, 0x0016) );
1207       // [Secondary Capture Image Storage]
1208       e_0008_0016 ->SetValue("1.2.840.10008.5.1.4.1.1.7"); 
1209       Archive->Push(e_0008_0016); 
1210    }
1211
1212 // ---- The user will never have to take any action on the following ----.
1213
1214    // new value for 'SOP Instance UID'
1215    ValEntry *e_0008_0018 = new ValEntry(
1216          Global::GetDicts()->GetDefaultPubDict()->GetEntry(0x0008, 0x0018) );
1217    e_0008_0018->SetValue( Util::CreateUniqueUID() );
1218    Archive->Push(e_0008_0018);
1219
1220    // Instance Creation Date
1221    ValEntry *e_0008_0012 = CopyValEntry(0x0008,0x0012);
1222    std::string date = Util::GetCurrentDate();
1223    e_0008_0012->SetValue(date.c_str());
1224    Archive->Push(e_0008_0012);
1225  
1226    // Instance Creation Time
1227    ValEntry *e_0008_0013 = CopyValEntry(0x0008,0x0013);
1228    std::string time = Util::GetCurrentTime();
1229    e_0008_0013->SetValue(time.c_str());
1230    Archive->Push(e_0008_0013);
1231
1232 // ----- Add Mandatory Entries if missing ---
1233
1234 // Entries whose type is 1 are mandatory, with a mandatory value
1235 // Entries whose type is 1c are mandatory-inside-a-Sequence
1236 // Entries whose type is 2 are mandatory, with a optional value
1237 // Entries whose type is 2c are mandatory-inside-a-Sequence
1238 // Entries whose type is 3 are optional
1239
1240    // 'Serie Instance UID'
1241    // Keep the value if exists
1242    // The user is allowed to create his own Series, 
1243    // keeping the same 'Serie Instance UID' for various images
1244    // The user shouldn't add any image to a 'Manufacturer Serie'
1245    // but there is no way no to allowed him to do that 
1246    ValEntry *e_0020_000e = FileInternal->GetValEntry(0x0020, 0x000e);
1247    if ( !e_0020_000e )
1248    {
1249       e_0020_000e = new ValEntry(
1250            Global::GetDicts()->GetDefaultPubDict()->GetEntry(0x0020, 0x000e) );
1251       e_0020_000e->SetValue(Util::CreateUniqueUID() );
1252       Archive->Push(e_0020_000e);
1253    } 
1254
1255    // 'Study Instance UID'
1256    // Keep the value if exists
1257    // The user is allowed to create his own Study, 
1258    //          keeping the same 'Study Instance UID' for various images
1259    // The user may add images to a 'Manufacturer Study',
1260    //          adding new series to an already existing Study 
1261    ValEntry *e_0020_000d = FileInternal->GetValEntry(0x0020, 0x000d);
1262    if ( !e_0020_000d )
1263    {
1264       e_0020_000d = new ValEntry(
1265             Global::GetDicts()->GetDefaultPubDict()->GetEntry(0x0020, 0x000d) );
1266       e_0020_000d->SetValue(Util::CreateUniqueUID() );
1267       Archive->Push(e_0020_000d);
1268    }
1269
1270    // Modality : if missing we set it to 'OTher'
1271    ValEntry *e_0008_0060 = FileInternal->GetValEntry(0x0008, 0x0060);
1272    if ( !e_0008_0060 )
1273    {
1274       e_0008_0060 = new ValEntry(
1275             Global::GetDicts()->GetDefaultPubDict()->GetEntry(0x0008, 0x0060) );
1276       e_0008_0060->SetValue("OT");
1277       Archive->Push(e_0008_0060);
1278    } 
1279
1280    // Manufacturer : if missing we set it to 'GDCM Factory'
1281    ValEntry *e_0008_0070 = FileInternal->GetValEntry(0x0008, 0x0070);
1282    if ( !e_0008_0070 )
1283    {
1284       e_0008_0070 = new ValEntry(
1285             Global::GetDicts()->GetDefaultPubDict()->GetEntry(0x0008, 0x0070) );
1286       e_0008_0070->SetValue("GDCM Factory");
1287       Archive->Push(e_0008_0070);
1288    } 
1289
1290    // Institution Name : if missing we set it to 'GDCM Hospital'
1291    ValEntry *e_0008_0080 = FileInternal->GetValEntry(0x0008, 0x0080);
1292    if ( !e_0008_0080 )
1293    {
1294       e_0008_0080 = new ValEntry(
1295             Global::GetDicts()->GetDefaultPubDict()->GetEntry(0x0008, 0x0080) );
1296       e_0008_0080->SetValue("GDCM Hospital");
1297       Archive->Push(e_0008_0080);
1298    } 
1299
1300    // Patient's Name : if missing, we set it to 'GDCM^Patient'
1301    ValEntry *e_0010_0010 = FileInternal->GetValEntry(0x0010, 0x0010);
1302    if ( !e_0010_0010 )
1303    {
1304       e_0010_0010 = new ValEntry(
1305             Global::GetDicts()->GetDefaultPubDict()->GetEntry(0x0010, 0x0010) );
1306       e_0010_0010->SetValue("GDCM^Patient");
1307       Archive->Push(e_0010_0010);
1308    } 
1309
1310    // Patient's Birth Date : 'type 2' entry -> must exist, value not mandatory
1311    ValEntry *e_0010_0030 = FileInternal->GetValEntry(0x0010, 0x0030);
1312    if ( !e_0010_0030 )
1313    {
1314       e_0010_0030 = new ValEntry(
1315             Global::GetDicts()->GetDefaultPubDict()->GetEntry(0x0010, 0x0030) );
1316       e_0010_0030->SetValue("");
1317       Archive->Push(e_0010_0030);
1318    }
1319
1320    // Patient's Sex :'type 2' entry -> must exist, value not mandatory
1321    ValEntry *e_0010_0040 = FileInternal->GetValEntry(0x0010, 0x0040);
1322    if ( !e_0010_0040 )
1323    {
1324       e_0010_0040 = new ValEntry(
1325             Global::GetDicts()->GetDefaultPubDict()->GetEntry(0x0010, 0x0040) );
1326       e_0010_0040->SetValue("");
1327       Archive->Push(e_0010_0040);
1328    }
1329
1330    // Referring Physician's Name :'type 2' entry -> must exist, value not mandatory
1331    ValEntry *e_0008_0090 = FileInternal->GetValEntry(0x0008, 0x0090);
1332    if ( !e_0008_0090 )
1333    {
1334       e_0008_0090 = new ValEntry(
1335             Global::GetDicts()->GetDefaultPubDict()->GetEntry(0x0008, 0x0090) );
1336       e_0008_0090->SetValue("");
1337       Archive->Push(e_0008_0090);
1338    }
1339  
1340    // Remove some inconstencies (probably some more will be added)
1341
1342    // if (0028 0008)Number of Frames exists
1343    //    Push out (0020 0052),Frame of Reference UID
1344    //    (only meaningfull within a Serie)
1345    ValEntry *e_0028_0008 = FileInternal->GetValEntry(0x0028, 0x0008);
1346    if ( !e_0028_0008 )
1347    {
1348       Archive->Push(0x0020, 0X0052);
1349    }
1350
1351  
1352 /**
1353  * \brief Restore in the File the initial group 0002
1354  */
1355 void FileHelper::RestoreWriteMandatory()
1356 {
1357    // group 0002 may be pushed out for ACR-NEMA writting purposes 
1358    Archive->Restore(0x0002,0x0000);
1359    Archive->Restore(0x0002,0x0001);
1360    Archive->Restore(0x0002,0x0002);
1361    Archive->Restore(0x0002,0x0003);
1362    Archive->Restore(0x0002,0x0012);
1363    Archive->Restore(0x0002,0x0013);
1364    Archive->Restore(0x0002,0x0016);
1365    Archive->Restore(0x0002,0x0100);
1366    Archive->Restore(0x0002,0x0102);
1367 }
1368
1369 //-----------------------------------------------------------------------------
1370 // Private
1371 /**
1372  * \brief Factorization for various forms of constructors.
1373  */
1374 void FileHelper::Initialize()
1375 {
1376    WriteMode = WMODE_RAW;
1377    WriteType = ExplicitVR;
1378
1379    PixelReadConverter  = new PixelReadConvert;
1380    PixelWriteConverter = new PixelWriteConvert;
1381    Archive = new DocEntryArchive( FileInternal );
1382
1383    if ( FileInternal->IsReadable() )
1384    {
1385       PixelReadConverter->GrabInformationsFromFile( FileInternal );
1386    }
1387 }
1388
1389 /**
1390  * \brief   
1391  */ 
1392 uint8_t *FileHelper::GetRaw()
1393 {
1394    uint8_t *raw = PixelReadConverter->GetRaw();
1395    if ( ! raw )
1396    {
1397       // The Raw image migth not be loaded yet:
1398       std::ifstream *fp = FileInternal->OpenFile();
1399       PixelReadConverter->ReadAndDecompressPixelData( fp );
1400       if(fp) 
1401          FileInternal->CloseFile();
1402
1403       raw = PixelReadConverter->GetRaw();
1404       if ( ! raw )
1405       {
1406          gdcmWarningMacro( "Read/decompress of pixel data apparently went wrong.");
1407          return 0;
1408       }
1409    }
1410
1411    return raw;
1412 }
1413
1414 //-----------------------------------------------------------------------------
1415 // Print
1416 void FileHelper::Print(std::ostream &os, std::string const &)
1417 {
1418    FileInternal->SetPrintLevel(PrintLevel);
1419    FileInternal->Print(os);
1420
1421    PixelReadConverter->SetPrintLevel(PrintLevel);
1422    PixelReadConverter->Print(os);
1423 }
1424
1425 //-----------------------------------------------------------------------------
1426 } // end namespace gdcm