]> Creatis software - gdcm.git/blobdiff - Example/TestCopyDicom.cxx
* Add a RefCounter object that is deleted only when it's reference count is
[gdcm.git] / Example / TestCopyDicom.cxx
index e292ade4be02dc05421661d9f66cdb58e11e0464..081c58c1ee7da1ddd4c7394830048f009661ace7 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: TestCopyDicom.cxx,v $
   Language:  C++
-  Date:      $Date: 2005/09/21 13:05:40 $
-  Version:   $Revision: 1.28 $
+  Date:      $Date: 2005/10/18 08:35:43 $
+  Version:   $Revision: 1.31 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -18,8 +18,7 @@
 #include "gdcmFile.h"
 #include "gdcmFileHelper.h"
 #include "gdcmDocument.h"
-#include "gdcmValEntry.h"
-#include "gdcmBinEntry.h"
+#include "gdcmDataEntry.h"
 
 #ifndef _WIN32
 #include <unistd.h> //for access, unlink
@@ -97,26 +96,24 @@ int main(int argc, char *argv[])
       //size_t dataSize;
       uint8_t *imageData;
       //dataSize = original->GetImageDataSize();// just an accesor :useless here
-      imageData = original->GetImageData();
-      (void)imageData; // no enough to avoid warning on 'Golgot'
-      //(void)dataSize;
+      
+      imageData = original->GetImageData(); // VERY important : 
+                                      // brings pixels into memory !
+      //(void)imageData; // not enough to avoid warning with icc compiler
+      //(void)dataSize; //  not enough to avoid warning on 'Golgot'
   
+      std::cout << imageData << std::endl; // to avoid warning ?
+
       //First of all copy the header field by field
 
       gdcm::DocEntry *d = original->GetFile()->GetFirstEntry();
       while(d)
       {
-         if ( gdcm::BinEntry *b = dynamic_cast<gdcm::BinEntry*>(d) )
+         if ( gdcm::DataEntry *de = dynamic_cast<gdcm::DataEntry *>(d) )
          {              
-            copy->GetFile()->InsertBinEntry( b->GetBinArea(),b->GetLength(),
-                                             b->GetGroup(),b->GetElement(),
-                                             b->GetVR() );
-         }
-         else if ( gdcm::ValEntry *v = dynamic_cast<gdcm::ValEntry*>(d) )
-         {   
-            copy->GetFile()->InsertValEntry( v->GetValue(),
-                                             v->GetGroup(),v->GetElement(),
-                                             v->GetVR() ); 
+            copy->GetFile()->InsertEntryBinArea( de->GetBinArea(),de->GetLength(),
+                                                 de->GetGroup(),de->GetElement(),
+                                                 de->GetVR() );
          }
          else
          {
@@ -140,7 +137,11 @@ int main(int argc, char *argv[])
       std::cout << "--- ---- ----------------------" << std::endl;
    
       copy->WriteDcmExplVR( output );
+      
 
+      delete fileOr;   // File
+      delete original; // FileHelper
+      delete copy;     // FileHelper
       return 0;
 }