]> Creatis software - gdcm.git/blob - Example/exAnonymizeNoLoad.cxx
0417a74e48e657b011457fdcd8a863196a75c5b5
[gdcm.git] / Example / exAnonymizeNoLoad.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: exAnonymizeNoLoad.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/04/27 12:40:28 $
7   Version:   $Revision: 1.4 $
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
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    std::cout << "------------------------------------------------" << std::endl;
37  
38    if( argc < 2 )
39     {
40     std::cerr << "Usage " << argv[0] << " Source Document  " 
41               << std::endl;
42     return 1;
43     }
44
45    std::string fileName       = argv[1];
46
47 // ============================================================
48 //   Read the input image.
49 // ============================================================
50
51    f1 = new gdcm::File( );
52    f1->SetLoadMode(NO_SEQ - NO_SHADOW);
53    f1->Load(fileName);
54    // We want to process any kind of gdcm::Readable document
55    if (!f1->gdcm::Document::IsReadable()) {
56        std::cout <<std::endl
57            << "Sorry, " << fileName <<"  not a gdcm-readable "
58            << "DICOM / ACR Document"
59            <<std::endl;
60         return 1;
61    }
62    std::cout << argv[1] << " is readable " << std::endl;
63
64 // ============================================================
65 //   No need to load the pixels in memory.
66 //   File will be overwritten
67 // ============================================================
68
69
70 // ============================================================
71 //  Choose the fields to anonymize.
72 // ============================================================
73    // Institution name 
74    f1->AddAnonymizeElement( 0x0008, 0x0080, "Xanadoo" ); 
75    // Patient's name 
76    f1->AddAnonymizeElement( 0x0010, 0x0010, "Fantomas" );   
77    // Patient's ID
78    f1->AddAnonymizeElement( 0x0010, 0x0020,"1515" );
79    // Patient's Birthdate
80    f1->AddAnonymizeElement( 0x0010, 0x0030,"11.11.1111" );
81    // Patient's Adress
82    f1->AddAnonymizeElement( 0x0010, 0x1040,"Sing-sing" );
83    // Patient's Mother's Birth Name
84    f1->AddAnonymizeElement( 0x0010, 0x1060,"Vampirella" );   
85    // Study Instance UID
86    f1->AddAnonymizeElement( 0x0020, 0x000d, "9.99.999.9999" );
87    // Telephone
88    f1->AddAnonymizeElement(0x0010, 0x2154, "3615" );
89   // Aware use will add new fields here
90
91
92 // No need to load the pixels.
93
94
95 // ============================================================
96 //   Overwrite the file
97 // ============================================================
98
99    std::cout <<"Let's AnonymizeNoLoad " << std::endl;;
100
101 // The gdcm::File remains untouched in memory
102
103    f1->AnonymizeNoLoad();
104
105 // No need to write the File : modif were done on disc !
106 // File was overwritten ...
107
108    std::cout <<"End AnonymizeNoLoad" << std::endl;
109
110 // ============================================================
111 //   Remove the Anonymize list
112 // ============================================================  
113    f1->ClearAnonymizeList();
114     
115    delete f1;
116    return 0;
117 }
118