]> Creatis software - gdcm.git/blob - Example/PrintDocument.cxx
exAnonymizeNoLoad can now anonymize any kind of document (even if they are not
[gdcm.git] / Example / PrintDocument.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: PrintDocument.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/04/26 16:21:54 $
7   Version:   $Revision: 1.14 $
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 "gdcmDebug.h"
20
21 #include <iostream>
22
23 int main(int argc, char *argv[])
24 {
25  
26    gdcm::File *e1= new gdcm::File();;
27    std::string fileName;   
28
29    if (argc == 1) {
30       std::cout << " Usage : "
31                 << argv[0] 
32                 << " filename"
33                 << " printLevel debug "
34                 << "short (=NOSEQ + NOSHADOW)" 
35                 << std::endl;
36        return 0;
37    }
38
39    if (argc > 1) {
40       fileName=argv[1];
41    } else {
42       fileName += GDCM_DATA_ROOT;
43       fileName += "/test.acr";
44    }
45
46    if (argc > 2) 
47    {
48       int level = atoi(argv[2]);   
49       e1->SetPrintLevel(level);
50    }
51
52    if (argc > 3)
53       gdcm::Debug::DebugOn(); 
54
55    if (argc > 4)
56       e1->SetLoadMode(NO_SEQ | NO_SHADOW);
57    e1->Load( fileName.c_str() );
58
59    if ( !e1->IsReadable() )
60    {
61       delete e1;
62       return 0;
63    }
64
65    e1->Print();
66       
67    std::cout << "\n\n" << std::endl; 
68
69    if ( e1->GetEntryValue(0x0002,0x0010) == gdcm::GDCM_NOTLOADED ) 
70    {
71       std::cout << "Transfer Syntax not loaded. " << std::endl
72                 << "Better you increase MAX_SIZE_LOAD_ELEMENT_VALUE"
73                 << std::endl;
74       return 0;
75    }       
76    
77    if(e1->IsReadable())
78       std::cout <<std::endl<<fileName<<" is Readable"<<std::endl;
79    else
80       std::cout <<std::endl<<fileName<<" is NOT Readable"<<std::endl;
81    std::cout<<std::flush;
82    delete e1;
83
84    return 0;
85    
86 }