1 /*=========================================================================
4 Module: $RCSfile: exAnonymizeNoLoad.cxx,v $
6 Date: $Date: 2005/05/04 07:29:17 $
7 Version: $Revision: 1.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.
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.
17 =========================================================================*/
19 #include "gdcmFileHelper.h"
20 #include "gdcmCommon.h"
21 #include "gdcmDebug.h"
25 int main(int argc, char *argv[])
29 gdcm::Debug::DebugOn();
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;
40 std::cerr << "Usage " << argv[0] << " Source Document "
45 std::string fileName = argv[1];
47 // ============================================================
48 // Read the input image.
49 // ============================================================
52 f1 = new gdcm::File( );
53 f1->SetLoadMode(NO_SEQ - NO_SHADOW);
54 res = f1->Load(fileName);
56 // gdcm::File::IsReadable() is no usable here, because we deal with
57 // any kind of gdcm::Readable *document*
58 // not only gdcm::File (as opposed to gdcm::DicomDir)
61 << "Sorry, " << fileName <<" not a gdcm-readable "
62 << "DICOM / ACR Document"
66 std::cout << argv[1] << " is readable " << std::endl;
68 // ============================================================
69 // No need to load the pixels in memory.
70 // File will be overwritten
71 // ============================================================
74 // ============================================================
75 // Choose the fields to anonymize.
76 // ============================================================
78 f1->AddAnonymizeElement( 0x0008, 0x0080, "Xanadoo" );
80 f1->AddAnonymizeElement( 0x0010, 0x0010, "Fantomas" );
82 f1->AddAnonymizeElement( 0x0010, 0x0020,"1515" );
83 // Patient's Birthdate
84 f1->AddAnonymizeElement( 0x0010, 0x0030,"11.11.1111" );
86 f1->AddAnonymizeElement( 0x0010, 0x1040,"Sing-sing" );
87 // Patient's Mother's Birth Name
88 f1->AddAnonymizeElement( 0x0010, 0x1060,"Vampirella" );
90 f1->AddAnonymizeElement( 0x0020, 0x000d, "9.99.999.9999" );
92 f1->AddAnonymizeElement(0x0010, 0x2154, "3615" );
93 // Aware use will add new fields here
96 // No need to load the pixels.
99 // ============================================================
100 // Overwrite the file
101 // ============================================================
103 std::cout <<"Let's AnonymizeNoLoad " << std::endl;;
105 // The gdcm::File remains untouched in memory
107 f1->AnonymizeNoLoad();
109 // No need to write the File : modif were done on disc !
110 // File was overwritten ...
112 std::cout <<"End AnonymizeNoLoad" << std::endl;
114 // ============================================================
115 // Remove the Anonymize list
116 // ============================================================
117 f1->ClearAnonymizeList();