1 /*=========================================================================
4 Module: $RCSfile: PrintDocument.cxx,v $
6 Date: $Date: 2005/04/26 16:21:54 $
7 Version: $Revision: 1.14 $
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 "gdcmDebug.h"
23 int main(int argc, char *argv[])
26 gdcm::File *e1= new gdcm::File();;
30 std::cout << " Usage : "
33 << " printLevel debug "
34 << "short (=NOSEQ + NOSHADOW)"
42 fileName += GDCM_DATA_ROOT;
43 fileName += "/test.acr";
48 int level = atoi(argv[2]);
49 e1->SetPrintLevel(level);
53 gdcm::Debug::DebugOn();
56 e1->SetLoadMode(NO_SEQ | NO_SHADOW);
57 e1->Load( fileName.c_str() );
59 if ( !e1->IsReadable() )
67 std::cout << "\n\n" << std::endl;
69 if ( e1->GetEntryValue(0x0002,0x0010) == gdcm::GDCM_NOTLOADED )
71 std::cout << "Transfer Syntax not loaded. " << std::endl
72 << "Better you increase MAX_SIZE_LOAD_ELEMENT_VALUE"
78 std::cout <<std::endl<<fileName<<" is Readable"<<std::endl;
80 std::cout <<std::endl<<fileName<<" is NOT Readable"<<std::endl;
81 std::cout<<std::flush;