X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Testing%2FTestPrintAllDocument.cxx;h=1b19d7949119d86f5ad1f0449dc826fa048bca12;hb=17ebda2271dd65565f512e835546b22c22ebbbb0;hp=d083bf07b087277587fab69aada44f211c87d26d;hpb=6b51b22366f878e1050c75a6ebb755bd2ff365c7;p=gdcm.git diff --git a/Testing/TestPrintAllDocument.cxx b/Testing/TestPrintAllDocument.cxx index d083bf07..1b19d794 100644 --- a/Testing/TestPrintAllDocument.cxx +++ b/Testing/TestPrintAllDocument.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: TestPrintAllDocument.cxx,v $ Language: C++ - Date: $Date: 2005/10/25 14:52:31 $ - Version: $Revision: 1.10 $ + Date: $Date: 2006/04/07 10:58:51 $ + Version: $Revision: 1.13 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -38,7 +38,7 @@ //Generated file: #include "gdcmDataImages.h" -int TestPrintAllDocument(int, char *[]) +int TestPrintAllDocument(int argc, char *argv[]) { //std::ostringstream s; int i = 0; @@ -47,11 +47,25 @@ int TestPrintAllDocument(int, char *[]) std::string pixelType, photomInterp; int l; l = strlen("PALETTE COLOR "); + + //gdcm::Debug::DebugOn(); + while( gdcmDataImages[i] != 0 ) { - std::string filename = GDCM_DATA_ROOT; - filename += "/"; //doh! - filename += gdcmDataImages[i]; + std::string filename; + if (argc ==2) + { + filename = argv[1]; + } + else + { + filename = GDCM_DATA_ROOT; + filename += "/"; //doh! + filename += gdcmDataImages[i]; + } + + std::cout << " ----------------------------------------------" + << "Begin with " << filename << std::endl; gdcm::File *f= gdcm::File::New( ); f->SetFileName( filename ); @@ -59,8 +73,7 @@ int TestPrintAllDocument(int, char *[]) f->SetPrintLevel(2); f->Print(); - // just to be able to grep the display result, for some usefull info - + //s.setf(std::ios::left); //s << std::setw(60-filename.length()) << " "; //std::cout << s.str() << gdcmDataImages[i]; @@ -101,10 +114,12 @@ int TestPrintAllDocument(int, char *[]) f->GetEntryString(0x0020,0x0037); if ( strImageOrientationPatient != gdcm::GDCM_UNFOUND ) { - gdcm::Orientation o; - gdcm::OrientationType orient = o.GetOrientationType( f ); + gdcm::Orientation *o = gdcm::Orientation::New(); + + gdcm::OrientationType orient = o->GetOrientationType( f ); std::cout << " ---------------------- Orientation " << orient << std::endl; + o->Delete(); } if( f->IsReadable() ) @@ -120,6 +135,10 @@ int TestPrintAllDocument(int, char *[]) return 1; } f->Delete(); + + if (argc ==2) + break; // user asked to check a single file. + i++; } return 0;