]> Creatis software - gdcm.git/blobdiff - Testing/TestPrintAllDocument.cxx
Add IsParsable() method, to avoid confusion with IsReadable()
[gdcm.git] / Testing / TestPrintAllDocument.cxx
index 2122494fec91e46b6d52df44ba212cac1ada708b..d083bf07b087277587fab69aada44f211c87d26d 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: TestPrintAllDocument.cxx,v $
   Language:  C++
-  Date:      $Date: 2005/09/07 08:48:28 $
-  Version:   $Revision: 1.6 $
+  Date:      $Date: 2005/10/25 14:52:31 $
+  Version:   $Revision: 1.10 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
 #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 <fstream>
 #include <iostream>
 #include <iomanip> // for std::ios::left, ...
@@ -55,12 +53,12 @@ int TestPrintAllDocument(int, char *[])
       filename += "/";  //doh!
       filename += gdcmDataImages[i];
 
-      gdcm::File *e1= new gdcm::File( );
-      e1->SetFileName( filename );
-      e1->Load();
+      gdcm::File *f= gdcm::File::New( );
+      f->SetFileName( filename );
+      f->Load();
 
-      e1->SetPrintLevel(2);
-      e1->Print();
+      f->SetPrintLevel(2);
+      f->Print();
       // just to be able to grep the display result, for some usefull info
  
       //s.setf(std::ios::left);
@@ -77,29 +75,39 @@ int TestPrintAllDocument(int, char *[])
       for (j=0; j<nbSpaces; j++)
          std::cout << " ";    
 
-      pixelType = e1->GetPixelType();
+      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();
+      std::cout << " Smpl.P.Pix.="          << f->GetSamplesPerPixel()
+                << " Plan.Config.="         << f->GetPlanarConfiguration();
  
-      photomInterp =  e1->GetEntryValue(0x0028,0x0004);               
+      photomInterp =  f->GetEntryString(0x0028,0x0004);               
       std::cout << " Photom.Interp.="       << photomInterp;
       for (j=0; j<l-photomInterp.length(); j++)
          std::cout << " ";
  
-      std::cout << " TransferSyntaxName= [" << e1->GetTransferSyntaxName() << "]" ;
+      std::cout << " TransferSyntaxName= [" << f->GetTransferSyntaxName() << "]" ;
 
-      swapC = e1->GetSwapCode();
+      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 <<filename << " is Readable" 
                    << std::endl << std::endl;
@@ -108,10 +116,10 @@ int TestPrintAllDocument(int, char *[])
       {
          std::cout << filename << " is NOT Readable" 
                    << std::endl << std::endl;
-         delete e1;
+         f->Delete();
          return 1;
       }
-      delete e1;
+      f->Delete();
       i++;
    }
    return 0;