]> Creatis software - gdcm.git/blobdiff - Testing/TestChangeHeader.cxx
Fix mistypings
[gdcm.git] / Testing / TestChangeHeader.cxx
index 3528375aaaef5a06ec7d7910790d527b820d3383..dc7919a1e2dc0a891c69ddc8e7791c2985e36222 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: TestChangeHeader.cxx,v $
   Language:  C++
-  Date:      $Date: 2005/01/24 16:10:50 $
-  Version:   $Revision: 1.30 $
+  Date:      $Date: 2008/09/15 15:49:21 $
+  Version:   $Revision: 1.36 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
      PURPOSE.  See the above copyright notices for more information.
                                                                                 
 =========================================================================*/
-#include "gdcmHeader.h"
+#include "gdcmFileHelper.h"
 #include "gdcmFile.h"
 
 // Writting of a DICOM file, using a correct gdcmHeader.
 // and pixels of an other image
 
 
-int TestChangeHeader(int argc, char* argv[])
+// NO SYNTAX UPDATED
+// Doesn't compile !
+
+int TestChangeHeader(int argc, char *argv[])
 {
    if (argc < 3)
    {
@@ -31,20 +34,22 @@ int TestChangeHeader(int argc, char* argv[])
       return 1;
    }
 
-   std::string premier = argv[1];
-   gdcmFile  *f1 = new gdcmFile(premier);
-
-   std::string deuxieme = argv[2];
-   gdcmFile  *f2 = new gdcmFile(deuxieme);
+   std::string firstArgument = argv[1];
+   
+   GDCM_NAME_SPACE::File  *f1 = new GDCM_NAME_SPACE::File();
+   f1->SetFileName(firstArgument);
+   f1->Load( );
+   std::string secondArgument = argv[2];
+   GDCM_NAME_SPACE::File  *f2 = new GDCM_NAME_SPACE::File(secondArgument);
 
    //f1->PrintPubElVal();
 
-   // We suppose the DICOM Entries of the second file *do* exist !
+   // We suppose the DICOM Entries of the second file *does* exist !
 
    std::string nbFrames = f2->GetHeader()->GetEntryValue(0x0028, 0x0008);
-   if(nbFrames != "gdcm::Unfound")
+   if(nbFrames != GDCM_UNFOUND)
    {
-      f1->GetHeader()->ReplaceOrCreate( nbFrames, 0x0028, 0x0008);
+      f1->GetHeader()->Insert( nbFrames, 0x0028, 0x0008);
    }
 
 
@@ -57,17 +62,17 @@ int TestChangeHeader(int argc, char* argv[])
 // It was not designed as a 'Test' program, but as a utility
 // provided to 'transform' an image 'Siemens MRI New version' into an image 'Siemens MRI old version'
          
-   f1->GetHeader()->ReplaceOrCreate(
+   f1->GetHeader()->Insert(
       f2->GetHeader()->GetEntryValue(0x0028, 0x0010), 0x0028, 0x0010);// nbLig
-   f1->GetHeader()->ReplaceOrCreate
+   f1->GetHeader()->Insert
       f2->GetHeader()->GetEntryValue(0x0028, 0x0011), 0x0028, 0x0011);// nbCol
-   f1->GetHeader()->ReplaceOrCreate
+   f1->GetHeader()->Insert
       f2->GetHeader()->GetEntryValue(0x0028, 0x0100), 0x0028, 0x0100);// BitsAllocated
-   f1->GetHeader()->ReplaceOrCreate
+   f1->GetHeader()->Insert
       f2->GetHeader()->GetEntryValue(0x0028, 0x0101), 0x0028, 0x0101);// BitsStored
-   f1->GetHeader()->ReplaceOrCreate
+   f1->GetHeader()->Insert
       f2->GetHeader()->GetEntryValue(0x0028, 0x0102), 0x0028, 0x0102);// HighBit
-   f1->GetHeader()->ReplaceOrCreate
+   f1->GetHeader()->Insert
       f2->GetHeader()->GetEntryValue(0x0028, 0x0103), 0x0028, 0x0103);// Pixel Representation
 // Probabely some more to update (?)
 
@@ -77,9 +82,9 @@ int TestChangeHeader(int argc, char* argv[])
 
    int dataSize = f2->GetImageDataSize();
    printf ("dataSize %d\n",dataSize);
-   uint8_timageData= f2->GetImageData();
+   uint8_t *imageData= f2->GetImageData();
 
-// TODO : Why don't we merge theese 2 functions ?
+// TODO : Why don't we merge these 2 functions ?
 
    f1->SetImageData(imageData,dataSize);