]> Creatis software - gdcm.git/blob - Example/exAnonymizeNoLoad.cxx
* Builder/ : add something to facilitate the RPM creation of gdcm
[gdcm.git] / Example / exAnonymizeNoLoad.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: exAnonymizeNoLoad.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/03/09 19:16:33 $
7   Version:   $Revision: 1.2 $
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 "gdcmCommon.h"
21 #include "gdcmDebug.h"
22
23 #include <iostream>
24
25 int main(int argc, char *argv[])
26 {  
27    gdcm::File *f1;
28  
29    gdcm::Debug::DebugOn();
30    std::cout << "------------------------------------------------" << std::endl;
31    std::cout << "Anonymize a gdcm-readable Dicom image"            << std::endl;
32    std::cout << "even if pixels are not gdcm readable (JPEG2000)"  << std::endl;
33    std::cout << "Warning : the image is overwritten"               << std::endl;
34    std::cout << "        : to preserve image integrity "
35           << " use exAnonymize "                                << std::endl;
36  
37    if( argc < 3 )
38     {
39     std::cerr << "Usage " << argv[0] << " Source image.dcm  " 
40               << std::endl;
41     return 1;
42     }
43
44    std::string fileName       = argv[1];
45
46 // ============================================================
47 //   Read the input image.
48 // ============================================================
49
50    std::cout << argv[1] << std::endl;
51
52    f1 = new gdcm::File( fileName );
53    if (!f1->IsReadable()) {
54        std::cerr << "Sorry, " << fileName <<"  not a gdcm-readable "
55            << "DICOM / ACR File"
56                  <<std::endl;
57    }
58    std::cout << " ... is readable " << std::endl;
59
60 // ============================================================
61 //   No need to load the pixels in memory.
62 //   File will be overwritten
63 // ============================================================
64
65
66 // ============================================================
67 //  Choose the fields to anonymize.
68 // ============================================================
69    // Institution name 
70    f1->AddAnonymizeElement(0x0008, 0x0080, "Xanadoo"); 
71    // Patient's name 
72    f1->AddAnonymizeElement(0x0010, 0x0010, "Fantomas");   
73    // Patient's ID
74    f1->AddAnonymizeElement( 0x0010, 0x0020,"1515" );   
75    // Study Instance UID
76    f1->AddAnonymizeElement(0x0020, 0x000d, "9.99.999.9999" );
77    // Telephone
78    f1->AddAnonymizeElement(0x0010, 0x2154, "3615" );
79   // Aware use will add new fields here
80
81
82 // No need to load the pixels.
83
84
85 // ============================================================
86 //   Overwrite the file
87 // ============================================================
88
89    std::cout <<"Let's AnonymizeNoLoad " << std::endl;;
90
91 // The gdcm::File remains untouched in memory
92
93    f1->AnonymizeNoLoad();
94
95 // No need to write the File : modif were done on disc !
96 // File was overwritten ...
97
98    std::cout <<"End AnonymizeNoLoad" << std::endl;
99
100 // ============================================================
101 //   Remove the Anonymize list
102 // ============================================================  
103    f1->ClearAnonymizeList();
104     
105    delete f1;
106    return 0;
107 }
108