]> Creatis software - gdcm.git/blobdiff - src/gdcmHeader.cxx
ENH: Improve string manipulation. I now inforce the notion of 'DicomString'
[gdcm.git] / src / gdcmHeader.cxx
index 21227e47a86f7d6994475e3892296914c1ffe2eb..ed7402e262d11799a96c2bd2395cd8d89fd283dc 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmHeader.cxx,v $
   Language:  C++
-  Date:      $Date: 2004/10/22 03:05:41 $
-  Version:   $Revision: 1.195 $
+  Date:      $Date: 2004/11/05 20:23:14 $
+  Version:   $Revision: 1.198 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -27,7 +27,6 @@
 
 namespace gdcm 
 {
-
 //-----------------------------------------------------------------------------
 // Constructor / Destructor
 /**
@@ -116,8 +115,8 @@ void Header::Write(std::ofstream* fp,FileType filetype)
    if (i_lgPix != -2)
    {
       // no (GrPixel, NumPixel) element
-      std::string s_lgPix;
-      s_lgPix = Util::Format("%d", i_lgPix+12);
+      std::string s_lgPix = Util::Format("%d", i_lgPix+12);
+      s_lgPix = Util::DicomString( s_lgPix.c_str() );
       ReplaceOrCreateByNumber(s_lgPix,GrPixel, 0x0000);
    }
 
@@ -1171,7 +1170,7 @@ std::string Header::GetTransfertSyntaxName()
  */
 void Header::SetImageDataSize(size_t ImageDataSize)
 {
-   ///FIXME I don't understand this code wh ydo we set two times 'car' ?
+   ///FIXME I don't understand this code whdo we set two times 'car' ?
    std::string car = Util::Format("%d", ImageDataSize);
  
    DocEntry *a = GetDocEntryByNumber(GrPixel, NumPixel);
@@ -1179,6 +1178,7 @@ void Header::SetImageDataSize(size_t ImageDataSize)
 
    ImageDataSize += 8;
    car = Util::Format("%d", ImageDataSize);
+   car = Util::DicomString( car.c_str() );
 
    SetEntryByNumber(car, GrPixel, NumPixel);
 }
@@ -1208,7 +1208,7 @@ bool Header::AnonymizeHeader()
       }
       else
       {
-         ReplaceOrCreateByNumber(std::string("anonymised"), 0x0010, 0x0010);
+         ReplaceOrCreateByNumber("anonymised", 0x0010, 0x0010);
       }
    }