]> Creatis software - gdcm.git/blob - Example/TestCopyDicom.cxx
* Some classes inherit now from gdcm::RefCounter
[gdcm.git] / Example / TestCopyDicom.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: TestCopyDicom.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/10/25 14:52:27 $
7   Version:   $Revision: 1.32 $
8                                                                                 
9   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10   l'Image). All rights reserved. See Doc/License.txt or
11   http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
12                                                                                 
13      This software is distributed WITHOUT ANY WARRANTY; without even
14      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15      PURPOSE.  See the above copyright notices for more information.
16                                                                                 
17 =========================================================================*/
18 #include "gdcmFile.h"
19 #include "gdcmFileHelper.h"
20 #include "gdcmDocument.h"
21 #include "gdcmDataEntry.h"
22
23 #ifndef _WIN32
24 #include <unistd.h> //for access, unlink
25 #else
26 #include <io.h> //for _access
27 #endif
28
29 // return true if the file exists
30 bool FileExists(const char *filename)
31 {
32 #ifdef _MSC_VER
33 # define access _access
34 #endif
35 #ifndef R_OK
36 # define R_OK 04
37 #endif
38   if ( access(filename, R_OK) != 0 )
39     {
40     return false;
41     }
42   else
43     {
44     return true;
45     }
46 }
47
48 bool RemoveFile(const char *source)
49 {
50 #ifdef _MSC_VER
51 #define _unlink unlink
52 #endif
53   return unlink(source) != 0 ? false : true;
54 }
55
56 // Here we load a gdcmFile and then try to create from scratch a copy of it,
57 // copying field by field the dicom image
58
59 int main(int argc, char *argv[])
60 {
61    if (argc < 3)
62    {
63       std::cerr << "Usage :" << std::endl << 
64       argv[0] << " input_dicom output_dicom" << std::endl;
65       return 1;
66    }
67
68 // don't modify identation in order to let this source xdiffable with ../Test
69       std::string filename = argv[1];
70       std::string output = argv[2];
71
72       if( FileExists( output.c_str() ) )
73       {
74          std::cerr << "Don't try to cheat, I am removing the file anyway" 
75                    << std::endl;
76          if( !RemoveFile( output.c_str() ) )
77          {
78             std::cerr << "Ouch, the file exist, but I cannot remove it" 
79                       << std::endl;
80             return 1;
81          }
82       }
83       gdcm::File *fileOr = gdcm::File::New();
84       fileOr->SetFileName( filename );
85       fileOr->Load();
86       gdcm::FileHelper *original = gdcm::FileHelper::New( fileOr );
87    
88       std::cout << "--- Original ----------------------" << std::endl;
89    
90       gdcm::FileHelper *copy = gdcm::FileHelper::New( );
91       copy->SetFileName( output );
92       copy->Load();
93
94       uint8_t *imageData;
95       
96       imageData = original->GetImageData(); // VERY important : 
97                                       // brings pixels into memory !
98   
99       std::cout << imageData << std::endl; // to avoid warning ?
100
101       //First of all copy the header field by field
102
103       gdcm::DocEntry *d = original->GetFile()->GetFirstEntry();
104       while(d)
105       {
106          if ( gdcm::DataEntry *de = dynamic_cast<gdcm::DataEntry *>(d) )
107          {              
108             copy->GetFile()->InsertEntryBinArea( de->GetBinArea(),de->GetLength(),
109                                                  de->GetGroup(),de->GetElement(),
110                                                  de->GetVR() );
111          }
112          else
113          {
114             // We skip pb of SQ recursive exploration
115             std::cout << "Skipped Sequence " 
116                       << "------------- " << d->GetVR() << " "<< std::hex
117                       << d->GetGroup() << "," << d->GetElement()
118                       << std::endl;    
119          }
120
121          d=original->GetFile()->GetNextEntry();
122       }
123
124       std::cout << "--- Copy ----------------------" << std::endl;
125       std::cout <<std::endl << "DO NOT care about Offset"  
126                 <<std::endl << std::endl;; 
127       copy->GetFile()->Print();
128       std::cout << "--- ---- ----------------------" << std::endl;
129    
130       copy->WriteDcmExplVR( output );
131       
132       fileOr->Delete();    // File
133       original->Delete();  // FileHelper
134       copy->Delete();      // FileHelper
135       return 0;
136 }
137
138
139