]> Creatis software - gdcm.git/blob - Example/PrintFile.cxx
0f3e82eaf67f48f82d7bec3a07e3b2a798410955
[gdcm.git] / Example / PrintFile.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: PrintFile.cxx,v $
5   Language:  C++
6   Date:      $Date: 2008/05/20 09:21:22 $
7   Version:   $Revision: 1.91 $
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 "gdcmDocument.h"
20 #include "gdcmSeqEntry.h"
21 #include "gdcmSQItem.h"
22 #include "gdcmDataEntry.h"
23
24 #include "gdcmFileHelper.h"
25 #include "gdcmDebug.h"
26 #include "gdcmDirList.h"
27 #include "gdcmGlobal.h"
28 #include "gdcmDictSet.h"
29 #include "gdcmArgMgr.h"
30 #include "gdcmOrientation.h"
31 #include <iostream>
32
33 /// \todo : code factorization, for 'single file' an 'whole directory' processing
34
35 void ShowLutData(GDCM_NAME_SPACE::File *f);
36
37      // Nothing is written yet to get LUT Data user friendly
38      // The following is to be moved into a PixelReadConvert method
39      // Let here, waiting for a clever idea on the way to do it.
40
41 void ShowLutData(GDCM_NAME_SPACE::File *f)
42 {  
43    GDCM_NAME_SPACE::SeqEntry *modLutSeq = f->GetSeqEntry(0x0028,0x3000);
44    if ( modLutSeq !=0 )
45    {
46       GDCM_NAME_SPACE::SQItem *sqi= modLutSeq->GetFirstSQItem();
47       if ( sqi != 0 )
48       {
49          std::string lutDescriptor = sqi->GetEntryString(0x0028,0x3002);
50          if (   /*lutDescriptor   == GDCM_UNFOUND*/ 0 )
51          {
52             std::cout << "LUT Descriptor is missing" << std::endl;
53             return;
54          }
55          int length;   // LUT length in Bytes
56          int deb;      // Subscript of the first Lut Value
57          int nbits;    // Lut item size (in Bits)
58
59          int nbRead;    // nb of items in LUT descriptor (must be = 3)
60
61          nbRead = sscanf( lutDescriptor.c_str(),
62                            "%d\\%d\\%d",
63                               &length, &deb, &nbits );
64          std::cout << "length " << length 
65                   << " deb " << deb 
66                   << " nbits " << nbits
67                   << std::endl;
68          if ( nbRead != 3 )
69          {
70             std::cout << "Wrong LUT descriptor" << std::endl;
71          }
72          //LUT Data (CTX dependent)    
73          GDCM_NAME_SPACE::DataEntry *b = sqi->GetDataEntry(0x0028,0x3006); 
74          if ( b != 0 )
75          { 
76             int BitsAllocated = f->GetBitsAllocated();
77             if ( BitsAllocated <= 8 )
78             { 
79                int mult;
80                if ( ( nbits == 16 ) && ( BitsAllocated == 8 ) )
81                {
82                // when LUT item size is different than pixel size
83                   mult = 2; // high byte must be = low byte
84                }
85                else
86                {
87                // See PS 3.3-2003 C.11.1.1.2 p 619
88                   mult = 1;
89                }
90                uint8_t *lut = b->GetBinArea();
91                for( int i=0; i < length; ++i )
92                {
93                   std::cout << i+deb << " : \t"
94                               << (int) (lut[i*mult + 1]) << std::endl;
95                }
96             }
97             else
98             {
99                uint16_t *lut = (uint16_t *)(b->GetBinArea());  
100                for( int i=0; i < length; ++i )
101                {
102                   std::cout << i+deb << " : \t"
103                               << (int) (((uint16_t *)lut)[i])
104                               << std::endl;
105                }             
106             }
107          }  
108          else
109             std::cout << "No LUT Data DataEntry (0x0028,0x3006) found?!? " 
110                         << std::endl;
111       }
112       else
113          std::cout << "No First SQ Item within (0x0028,0x3000) ?!? " 
114                      << std::endl;      
115    }
116    else
117       std::cout << "No LUT Data SeqEntry (0x0028,0x3000) found " 
118                   << std::endl;
119 }
120
121 int main(int argc, char *argv[])
122 {
123
124    START_USAGE(usage)
125    " \n PrintFile : \n                                                        ",
126    " Display the header of a ACR-NEMA/PAPYRUS/DICOM File                      ",
127    " usage: PrintFile {filein=inputFileName|dirin=inputDirectoryName}[level=n]",
128    "                       [forceload=listOfElementsToForceLoad] [rec] [noex] ",
129    "                       [4DLoc= ][dict= privateDirectory]                  ",
130    "                       [ { [noshadowseq] | [noshadow][noseq] } ] [load]   ",
131    "                       [debug] [warning]                                  ",
132    "      level = 0,1,2 : depending on the amount of details user wants to see",
133    "      rec : user wants to parse recursively the directory                 ",
134    "      load : user wants to load the pixels, as well (to see warning info) ",
135    "      noex : user doesn't want extra 'user friendly' info                 ",   
136    "      4DLoc: group-elem(in hexa, no space) of the DataEntry holdind 4thDim",
137    "      listOfElementsToForceLoad : group-elem,g2-e2,... (in hexa, no space)",
138    "                                of Elements to load whatever their length ",
139    "      privateDirectory : source file full path name of Shadow Group elems ",
140    "      noshadowseq: user doesn't want to load Private Sequences            ",
141    "      noshadow   : user doesn't want to load Private groups (odd number)  ",
142    "      noseq      : user doesn't want to load Sequences                    ",
143    "      debug      : user wants to run the program in 'debug mode'          ",
144    "      warning    : user wants to be warned about any oddity in the File   ",
145    "      showlut :user wants to display the Palette Color (as an int array)  ",
146    FINISH_USAGE
147
148    // Initialize Arguments Manager   
149    GDCM_NAME_SPACE::ArgMgr *am= new GDCM_NAME_SPACE::ArgMgr(argc, argv);
150   
151    if (argc == 1 || am->ArgMgrDefined("usage") )
152    {
153       am->ArgMgrUsage(usage); // Display 'usage'
154       delete am;
155       return 1;
156    }
157
158    const char *fileName = am->ArgMgrGetString("filein");
159    const char *dirName  = am->ArgMgrGetString("dirin");
160
161    if ( (fileName == 0 && dirName == 0) ||
162         (fileName != 0 && dirName != 0) )
163    {
164       std::cerr << std::endl
165         << "Either 'filein=' or 'dirin=' must be present;" 
166         << std::endl << "Not both" << std::endl;
167       am->ArgMgrUsage(usage); // Display 'usage'  
168       delete am;
169       return 1;
170    }   
171       
172    bool noex = ( 0 != am->ArgMgrDefined("noex") );
173    bool rec  = ( 0 != am->ArgMgrDefined("rec") );   
174         
175    if (am->ArgMgrDefined("debug"))
176       GDCM_NAME_SPACE::Debug::DebugOn();
177
178    if (am->ArgMgrDefined("warning"))
179       GDCM_NAME_SPACE::Debug::WarningOn();
180        
181    int loadMode = GDCM_NAME_SPACE::LD_ALL;
182    if ( am->ArgMgrDefined("noshadowseq") )
183       loadMode |= GDCM_NAME_SPACE::LD_NOSHADOWSEQ;
184    else 
185    {
186       if ( am->ArgMgrDefined("noshadow") )
187          loadMode |= GDCM_NAME_SPACE::LD_NOSHADOW;
188       if ( am->ArgMgrDefined("noseq") )
189          loadMode |= GDCM_NAME_SPACE::LD_NOSEQ;
190    }
191
192    int level = am->ArgMgrGetInt("level", 1);
193
194    int forceLoadNb;
195    uint16_t *elemsToForceLoad 
196                            = am->ArgMgrGetXInt16Enum("forceload", &forceLoadNb);
197
198    int nbP =0;
199    uint16_t *FourthDimLoc;
200    if ( am->ArgMgrDefined("4DLoc") )
201    {
202       FourthDimLoc = am->ArgMgrGetXInt16Enum("4DLoc", &nbP);
203    
204       if (nbP != 1) 
205       {   
206          std::cout << "4DLoc must have 2 and only 2 components!" << std::endl;
207          delete am;
208          return 1;      
209       }
210    }
211
212    bool load = ( 0 != am->ArgMgrDefined("load") );
213    
214    bool showlut = ( 0 != am->ArgMgrDefined("SHOWLUT") );
215
216    bool ddict = am->ArgMgrDefined("dict") ? true : false;
217    const char *dict = 0;
218
219    if (ddict)
220    {
221      dict = am->ArgMgrGetString("dict",0);
222    }
223
224    /* if unused Param we give up */
225    if ( am->ArgMgrPrintUnusedLabels() )
226    {
227       am->ArgMgrUsage(usage);
228       delete am;
229       return 1;
230    } 
231
232    delete am;  // we don't need Argument Manager any longer
233
234    // ----------- End Arguments Manager ---------
235
236
237    if (ddict)
238    {
239       GDCM_NAME_SPACE::Global::GetDicts()->GetDefaultPubDict()->AddDict(dict);
240    }
241
242    if ( fileName != 0 ) // ====== Deal with a single file ======
243    {
244       GDCM_NAME_SPACE::File *f = GDCM_NAME_SPACE::File::New();
245       f->SetLoadMode(loadMode);
246       f->SetFileName( fileName );
247    f->SetMaxSizeLoadEntry(0xffff);
248
249       for (int ri=0; ri<forceLoadNb; ri++)
250       {
251          f->AddForceLoadElement((uint32_t)elemsToForceLoad[2*ri], 
252                                 (uint32_t)elemsToForceLoad[2*ri+1] );
253       }
254 // TODO : find why such a polution
255 // To avoid polluting the output with messages
256 // 'Last system error was : No such file or directory'
257
258 errno = 0; 
259
260
261       bool res = false;
262       try
263         {
264         res = f->Load();
265         }
266       catch(std::exception &ex)
267         {
268         std::cerr << "sorry an exception was thrown: " << ex.what() << std::endl;
269         }
270       // GDCM_NAME_SPACE::File::IsReadable() is no usable here, because we deal with
271       // any kind of gdcm-Parsable *document*
272       // not only GDCM_NAME_SPACE::File (as opposed to GDCM_NAME_SPACE::DicomDir)
273       if ( !res )
274       {
275          std::cout << "Cannot process file [" << fileName << "]" << std::endl;
276          std::cout << "Either it doesn't exist, or it's read protected "
277                    << std::endl;
278          std::cout << "or it's not a Dicom File, or its 'header' is bugged"
279                    << std::endl;
280          std::cout << "use 'PrintFile filein=... debug' to try to guess the pb"
281                    << std::endl;
282          f->Delete();
283          return 0;
284       }
285
286       if (nbP == 1)
287          f->SetFourthDimensionLocation(FourthDimLoc[0],FourthDimLoc[1]);
288
289
290       GDCM_NAME_SPACE::FileHelper *fh = GDCM_NAME_SPACE::FileHelper::New(f);
291       fh->SetPrintLevel( level );
292
293       fh->Print();
294
295       std::cout << "\n\n" << std::endl;
296
297       std::cout <<std::endl;
298       std::cout <<" dataSize    " << fh->GetImageDataSize()    << std::endl;
299       std::cout <<" dataSizeRaw " << fh->GetImageDataRawSize() << std::endl;
300 if (!noex)
301 {
302       int nX,nY,nZ,nT,sPP,planarConfig;
303       std::string pixelType;
304       nX=f->GetXSize();
305       nY=f->GetYSize();
306       nZ=f->GetZSize();
307       nT=f->GetTSize();
308       std::cout << " DIMX=" << nX << " DIMY=" << nY 
309                 << " DIMZ=" << nZ << " DIMT=" << nT
310                 << std::endl;
311
312       pixelType    = f->GetPixelType();
313       sPP          = f->GetSamplesPerPixel();
314       std::cout << " pixelType= ["            << pixelType 
315                 << "] SamplesPerPixel= ["     << sPP
316                 << "] ";
317
318       if (sPP == 3)
319       {
320          planarConfig = f->GetPlanarConfiguration();
321          std::cout << " PlanarConfiguration= [" << planarConfig 
322                 << "] "<< std::endl;
323       } 
324       std::cout << " PhotometricInterpretation= [" 
325                 << f->GetEntryString(0x0028,0x0004)
326                 << "] "<< std::endl;
327
328       int numberOfScalarComponents=f->GetNumberOfScalarComponents();
329       std::cout << " NumberOfScalarComponents = " << numberOfScalarComponents 
330                 <<std::endl
331                 << " LUT = " << (f->HasLUT() ? "TRUE" : "FALSE")
332                 << std::endl;
333
334       if ( f->GetDataEntry(0x0002,0x0010) )
335          if ( f->GetDataEntry(0x0002,0x0010)->IsNotLoaded() ) 
336          {
337             std::cout << "Transfer Syntax not loaded. " << std::endl
338                      << "Better you increase MAX_SIZE_LOAD_ELEMENT_VALUE"
339                   << std::endl;
340             f->Delete();
341             return 0;
342          }
343   
344       std::string transferSyntaxName = f->GetTransferSyntaxName();
345       std::cout << " TransferSyntaxName= [" << transferSyntaxName << "]" 
346                 << std::endl;
347       std::cout << " SwapCode= " << f->GetSwapCode() << std::endl;
348       std::cout << " ------" << std::endl;
349
350       std::cout << "\n\n" << std::endl; 
351       std::cout << "X spacing " << f->GetXSpacing() << std::endl;
352       std::cout << "Y spacing " << f->GetYSpacing() << std::endl;
353       std::cout << "Z spacing " << f->GetZSpacing() << std::endl;
354     
355 //------------------------------
356
357       // Let's get and print some usefull fields about 'Orientation'
358       // ------------------------------------------------------------
359
360       std::string strPatientPosition = 
361                                       f->GetEntryString(0x0018,0x5100);
362       if ( strPatientPosition != GDCM_NAME_SPACE::GDCM_UNFOUND 
363         && strPatientPosition != "" )  
364             std::cout << "PatientPosition (0x0010,0x5100)= [" 
365                       << strPatientPosition << "]" << std::endl;
366  
367       std::string strViewPosition = 
368                                       f->GetEntryString(0x0018,0x5101);
369       if ( strViewPosition != GDCM_NAME_SPACE::GDCM_UNFOUND 
370         && strViewPosition != "" )  
371             std::cout << "View Position (0x0018,0x5101)= [" 
372                       << strViewPosition << "]" << std::endl;
373       
374      std::string strPatientOrientation = 
375                                       f->GetEntryString(0x0020,0x0020);
376       if ( strPatientOrientation != GDCM_NAME_SPACE::GDCM_UNFOUND
377         && strPatientOrientation != "")  
378          std::cout << "PatientOrientation (0x0020,0x0020)= [" 
379                    << strPatientOrientation << "]" << std::endl;
380
381       std::string strImageOrientationPatient = 
382                                       f->GetEntryString(0x0020,0x0037);  
383       if ( strImageOrientationPatient != GDCM_NAME_SPACE::GDCM_UNFOUND
384         && strImageOrientationPatient != "" )  
385          std::cout << "ImageOrientationPatient (0x0020,0x0037)= [" 
386                    << strImageOrientationPatient << "]" << std::endl;
387
388       std::string strImageOrientationRET = 
389                                       f->GetEntryString(0x0020,0x0035);
390       if ( strImageOrientationRET != GDCM_NAME_SPACE::GDCM_UNFOUND
391         && strImageOrientationRET != "" )  
392          std::cout << "ImageOrientationRET (0x0020,0x0035)= [" 
393                    << strImageOrientationRET << "]" << std::endl;
394
395       std::string strImagePositionPatient = 
396                                       f->GetEntryString(0x0020,0x0032);  
397       if ( strImagePositionPatient != GDCM_NAME_SPACE::GDCM_UNFOUND
398         && strImagePositionPatient != "" )  
399          std::cout << "ImagePositionPatient (0x0020,0x0032)= [" 
400                    << strImagePositionPatient << "]" << std::endl;
401
402       std::string strImagePositionPatientRET = 
403                                       f->GetEntryString(0x0020,0x0030);
404       if ( strImagePositionPatientRET != GDCM_NAME_SPACE::GDCM_UNFOUND
405         && strImagePositionPatientRET != "" )  
406          std::cout << "ImagePositionPatientRET (0x0020,0x0030)= [" 
407                    << strImagePositionPatientRET << "]" << std::endl;
408   
409      float iop[6];
410      /*bool riop = */f->GetImageOrientationPatient(iop);  
411      float ipp[3];
412      /*bool ripp = */f->GetImagePositionPatient(ipp);
413
414      std::cout << "Image Position (0x0020,0x0032|0x0030) : "
415                << ipp[0] << " , " << ipp[1] << " , "<< ipp[2]
416                << std::endl;
417      std::cout << "Image Orientation (0x0020,0x0037|0x0035) : "
418                << iop[0] << " , " << iop[1] << " , "<< iop[2] << " , "
419                << iop[3] << " , " << iop[4] << " , "<< iop[5]
420                << std::endl; 
421
422
423       // Let's compute 'user friendly' results about 'Orientation'
424       // ---------------------------------------------------------
425  
426       GDCM_NAME_SPACE::Orientation *o = GDCM_NAME_SPACE::Orientation::New();
427
428       if ( strImageOrientationPatient != GDCM_NAME_SPACE::GDCM_UNFOUND ||
429            strImageOrientationRET     != GDCM_NAME_SPACE::GDCM_UNFOUND )
430       {
431   
432          GDCM_NAME_SPACE::OrientationType orient = o->GetOrientationType( f );
433  
434          std::cout << "TypeOrientation = " << orient << " (-> " 
435                    << o->GetOrientationTypeString(orient) << " )" << std::endl;
436       }
437
438       std::string ori = o->GetOrientation ( f );
439       if (ori != "\\" )
440          std::cout << "Orientation [" << ori << "]" << std::endl;
441       o->Delete();
442 /*      
443 std::vector <double> valueVector; 
444 GDCM_NAME_SPACE::DataEntry *e_0018_5212 = f->GetDataEntry(0x0018, 0x5212);
445 bool resJP = e_0018_5212->GetDSValue(valueVector);
446 if (resJP) {
447    double test;
448    for ( int i=0; i < 3; i++ ) {
449        test = valueVector[i];
450        std::cout << " test " << test << std::endl;
451     }
452 }
453 //e_0018_5212->Delete();
454 */       
455       
456 }  
457 //------------------------------
458
459
460       // Display the LUT as an int array (for debugging purpose)
461       if ( f->HasLUT() && showlut )
462       {
463          uint8_t* lutrgba = fh->GetLutRGBA();
464          if ( lutrgba == 0 )
465          {
466             std::cout << "Lut RGBA (Palette Color) not built " << std::endl;
467  
468            // Nothing is written yet to get LUT Data user friendly
469            // The following is to be moved into a PixelRedaConvert method
470   
471             GDCM_NAME_SPACE::SeqEntry *modLutSeq = f->GetSeqEntry(0x0028,0x3000);
472             if ( modLutSeq !=0 )
473             {
474                GDCM_NAME_SPACE::SQItem *sqi= modLutSeq->GetFirstSQItem();
475                if ( !sqi )
476                {
477                   std::string lutDescriptor = sqi->GetEntryString(0x0028,0x3002);
478                   int length;   // LUT length in Bytes
479                   int deb;      // Subscript of the first Lut Value
480                   int nbits;    // Lut item size (in Bits)
481                   int nbRead;   // nb of items in LUT descriptor (must be = 3)
482
483                   nbRead = sscanf( lutDescriptor.c_str(),
484                                     "%d\\%d\\%d",
485                                      &length, &deb, &nbits );
486                   if ( nbRead != 3 )
487                   {
488                       std::cout << "Wrong LUT descriptor" << std::endl;
489                   }                                                  
490                   GDCM_NAME_SPACE::DataEntry *b = sqi->GetDataEntry(0x0028,0x3006);
491                   if ( b != 0 )
492                   {
493                      if ( b->GetLength() != 0 )
494                      {
495                         std::cout << "---------------------------------------"
496                                << " We should never reach this point      "
497                                << std::endl;
498                         //LoadEntryBinArea(b);    //LUT Data (CTX dependent)
499                      }   
500                  }
501               }      
502             }
503             else
504                std::cout << "No LUT Data (0x0028,0x3000) found " << std::endl;
505         }
506         /*
507          else
508          {
509             if ( fh->GetLutItemSize() == 8 )
510             {
511                for (int i=0;i<fh->GetLutItemNumber();i++)
512                   std::cout << i << " : \t"
513                          << (int)(lutrgba[i*4])   << " "
514                          << (int)(lutrgba[i*4+1]) << " "
515                          << (int)(lutrgba[i*4+2]) << std::endl;
516             }
517             else // LutItemSize assumed to be = 16
518             {
519                uint16_t* lutrgba16 = (uint16_t*)lutrgba;
520                for (int i=0;i<fh->GetLutItemNumber();i++)
521                   std::cout << i << " : \t"
522                          << (int)(lutrgba16[i*4])   << " "
523                          << (int)(lutrgba16[i*4+1]) << " "
524                          << (int)(lutrgba16[i*4+2]) << std::endl;
525             }
526          }
527          */
528       }
529       else if (showlut)
530       {
531          std::cout << "Try LUT Data "<< std::endl;
532          ShowLutData(f);
533       }
534
535       // Parsability of the GDCM_NAME_SPACE::Document already checked, after Load() !
536       
537       if ( f->IsReadable() )
538       {
539          std::cout <<std::endl<<fileName<<" is Readable"<<std::endl;
540       }
541       else if ( f->GetSeqEntry(0x0041,0x1010) )
542       {
543          std::cout <<std::endl<<fileName<<" looks like a 'PAPYRUS image' file"
544                    <<std::endl;
545       }
546       else if ( f->GetSeqEntry(0x0004,0x1220) )
547       {
548          std::cout <<std::endl<<fileName<<" looks like a 'DICOMDIR file'"
549                    <<std::endl;
550       }
551       else 
552       {
553          std::cout <<std::endl<<fileName<<" doesn't look like an image file "
554              <<std::endl; 
555       }
556  
557       std::cout<<std::flush;
558       f->Delete();
559       fh->Delete();
560    }
561          // ===========================================================================
562    else  // =============================== Deal with a Directory =====================
563    {     // ===========================================================================
564       std::cout << "dirName [" << dirName << "]" << std::endl;
565       
566       GDCM_NAME_SPACE::DirList dirList(dirName,rec); // gets recursively (or not) the file list
567       GDCM_NAME_SPACE::DirListType fileList = dirList.GetFilenames();
568       GDCM_NAME_SPACE::File *f;
569       bool res;
570
571       if (fileList.size() == 0)
572       {
573          std::cout << "No file found in : [" << dirName << "]" << std::endl;
574       }
575       
576       for( GDCM_NAME_SPACE::DirListType::iterator it  = fileList.begin();
577                                  it != fileList.end();
578                                  ++it )
579       {
580          std::cout << std::endl<<" Start processing :[" << it->c_str() << "]"
581                    << std::endl;
582          f = GDCM_NAME_SPACE::File::New();
583          f->SetLoadMode(loadMode);
584          f->SetFileName( it->c_str() );
585
586          for (int ri=0; ri<forceLoadNb; ri++)
587          {
588             printf("%04x,%04x\n",elemsToForceLoad[2*ri], 
589                                  elemsToForceLoad[2*ri+1]);
590             f->AddForceLoadElement((uint32_t)elemsToForceLoad[2*ri], 
591                                    (uint32_t)elemsToForceLoad[2*ri+1]); 
592          }
593          res = f->Load();
594
595          if ( !res )
596          {
597             std::cout << "Cannot process file [" << it->c_str() << "]" 
598                       << std::endl;
599             std::cout << "Either it doesn't exist, or it's read protected " 
600                       << std::endl;
601             std::cout << "or it's not a Dicom File, or its 'header' is bugged" 
602                       << std::endl;
603             std::cout << "use 'PrintFile filein=... debug' "
604                       << "to try to guess the pb"
605                       << std::endl;
606             f->Delete();
607             continue;
608          }
609
610          GDCM_NAME_SPACE::FileHelper *fh = GDCM_NAME_SPACE::FileHelper::New(f);
611          fh->SetPrintLevel( level );
612          fh->Print();
613
614 //------------------------------
615 if (!noex)
616 {
617          // Lets's get and print some usefull fields about 'Orientation'
618          // ------------------------------------------------------------
619
620          std::string strPatientPosition = 
621                                        f->GetEntryString(0x0018,0x5100);
622          if ( strPatientPosition != GDCM_NAME_SPACE::GDCM_UNFOUND 
623          && strPatientPosition != "" )  
624                std::cout << "PatientPosition (0x0010,0x5100)= [" 
625                         << strPatientPosition << "]" << std::endl;
626     
627          std::string strViewPosition = 
628                                        f->GetEntryString(0x0018,0x5101);
629          if ( strViewPosition != GDCM_NAME_SPACE::GDCM_UNFOUND 
630          && strViewPosition != "" )  
631                std::cout << "strViewPosition (0x0010,0x5101)= [" 
632                         << strViewPosition << "]" << std::endl;
633          
634          std::string strPatientOrientation = 
635                                        f->GetEntryString(0x0020,0x0020);
636          if ( strPatientOrientation != GDCM_NAME_SPACE::GDCM_UNFOUND
637          && strPatientOrientation != "")  
638             std::cout << "PatientOrientation (0x0020,0x0020)= [" 
639                       << strPatientOrientation << "]" << std::endl;
640
641          std::string strImageOrientationPatient = 
642                                        f->GetEntryString(0x0020,0x0037);  
643          if ( strImageOrientationPatient != GDCM_NAME_SPACE::GDCM_UNFOUND
644          && strImageOrientationPatient != "" )  
645             std::cout << "ImageOrientationPatient (0x0020,0x0037)= [" 
646                      << strImageOrientationPatient << "]" << std::endl;
647
648          std::string strImageOrientationRET = 
649                                        f->GetEntryString(0x0020,0x0035);
650          if ( strImageOrientationRET != GDCM_NAME_SPACE::GDCM_UNFOUND
651          && strImageOrientationRET != "" )
652          {
653             std::cout << "ImageOrientationRET (0x0020,0x0035)= [" 
654                      << strImageOrientationRET << "]" << std::endl;
655          }
656
657          // Let's compute 'user friendly' results about 'Orientation'
658          // ---------------------------------------------------------
659     
660          GDCM_NAME_SPACE::Orientation *o = GDCM_NAME_SPACE::Orientation::New(); 
661
662
663          if ( strImageOrientationPatient != GDCM_NAME_SPACE::GDCM_UNFOUND ||
664             strImageOrientationRET     != GDCM_NAME_SPACE::GDCM_UNFOUND )
665          {
666      
667             GDCM_NAME_SPACE::OrientationType orient = o->GetOrientationType( f );
668     
669             std::cout << "TypeOrientation = " << orient << " (-> " 
670                      << o->GetOrientationTypeString(orient) << " )" << std::endl;
671          }
672
673          std::string ori = o->GetOrientation ( f );
674          if (ori != "\\" )
675             std::cout << "Orientation [" << ori << "]" << std::endl;
676          o->Delete();
677 }
678 //------------------------------- 
679         
680          if (f->IsReadable())
681          {
682             if (load)  // just to see warning messages at load time !
683             {
684                uint8_t *pixels = fh->GetImageData(); (void)pixels;
685                uint32_t lgth   = fh->GetImageDataSize(); (void)lgth;
686             }         
687
688             std::cout <<std::endl<<it->c_str()<<" is Readable"<<std::endl;
689          }
690          else
691             std::cout <<std::endl<<it->c_str()<<" is NOT Readable"<<std::endl;
692          std::cout << "\n\n" << std::endl;
693          
694
695
696          f->Delete();
697          fh->Delete();
698       }
699       std::cout<<std::flush;
700    }
701    return 0;
702 }