X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Testing%2FTestPrintAllDocument.cxx;h=76215a247570bd4b0402b3f650865564a1b44409;hb=a981c86aa591c214ea7491162427b7a73d7d8701;hp=1ef573842d12efe475b28ee2392ad6bacf7d5363;hpb=27c37e95b55fb51d7f8de13bebac4f299d487c17;p=gdcm.git diff --git a/Testing/TestPrintAllDocument.cxx b/Testing/TestPrintAllDocument.cxx index 1ef57384..76215a24 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/07/05 18:47:38 $ - Version: $Revision: 1.4 $ + Date: $Date: 2005/10/18 08:35:46 $ + Version: $Revision: 1.9 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -24,15 +24,13 @@ #include "gdcmFile.h" #include "gdcmUtil.h" #include "gdcmCommon.h" -#include "gdcmBinEntry.h" #include "gdcmDocEntry.h" #include "gdcmDocEntrySet.h" #include "gdcmDocument.h" #include "gdcmElementSet.h" #include "gdcmSeqEntry.h" #include "gdcmSQItem.h" -#include "gdcmValEntry.h" - +#include "gdcmOrientation.h" #include #include #include // for std::ios::left, ... @@ -55,9 +53,12 @@ int TestPrintAllDocument(int, char *[]) filename += "/"; //doh! filename += gdcmDataImages[i]; - gdcm::File *e1= new gdcm::File( filename ); - e1->SetPrintLevel(2); - e1->Print(); + gdcm::File *f= new gdcm::File( ); + f->SetFileName( filename ); + f->Load(); + + f->SetPrintLevel(2); + f->Print(); // just to be able to grep the display result, for some usefull info //s.setf(std::ios::left); @@ -65,31 +66,48 @@ int TestPrintAllDocument(int, char *[]) //std::cout << s.str() << gdcmDataImages[i]; std::cout << gdcmDataImages[i]; - for (j=0; j<60-strlen(gdcmDataImages[i]); j++) + + unsigned int nbSpaces; + if (strlen(gdcmDataImages[i]) <= 60) + nbSpaces = 60-strlen(gdcmDataImages[i]); + else + nbSpaces = 0; + for (j=0; jGetPixelType(); + pixelType = f->GetPixelType(); std::cout << " pixelType=" << pixelType; if ( pixelType == "8U" || pixelType == "8S" ) std::cout << " "; - std::cout << " Smpl.P.Pix.=" << e1->GetSamplesPerPixel() - << " Plan.Config.=" << e1->GetPlanarConfiguration(); - photomInterp = e1->GetEntryValue(0x0028,0x0004); - + std::cout << " Smpl.P.Pix.=" << f->GetSamplesPerPixel() + << " Plan.Config.=" << f->GetPlanarConfiguration(); + + photomInterp = f->GetEntryString(0x0028,0x0004); std::cout << " Photom.Interp.=" << photomInterp; for (j=0; jGetTransferSyntaxName() << "]" ; - swapC = e1->GetSwapCode(); + std::cout << " TransferSyntaxName= [" << f->GetTransferSyntaxName() << "]" ; + + swapC = f->GetSwapCode(); if ( swapC != 1234 ) - std::cout << " SwapCode = " << e1->GetSwapCode(); - if ( e1->CheckIfEntryExist(0x0088,0x0200) ) + std::cout << " SwapCode = " << f->GetSwapCode(); + if ( f->CheckIfEntryExist(0x0088,0x0200) ) std::cout << " Icon Image Sequence"; - std::cout << std::endl; - - if( e1->IsReadable() ) + std::cout << std::endl; + + std::string strImageOrientationPatient = + f->GetEntryString(0x0020,0x0037); + if ( strImageOrientationPatient != gdcm::GDCM_UNFOUND ) + { + gdcm::Orientation o; + gdcm::OrientationType orient = o.GetOrientationType( f ); + std::cout << " ---------------------- Orientation " << orient + << std::endl; + } + + if( f->IsReadable() ) { std::cout <