1 /*=========================================================================
4 Module: $RCSfile: TestPrintAllDocument.cxx,v $
6 Date: $Date: 2005/06/08 04:01:41 $
7 Version: $Revision: 1.3 $
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 // TODO : check what's *actually* usefull
21 #include "gdcmDictEntry.h"
23 #include "gdcmDictSet.h"
26 #include "gdcmCommon.h"
27 #include "gdcmBinEntry.h"
28 #include "gdcmDocEntry.h"
29 #include "gdcmDocEntrySet.h"
30 #include "gdcmDocument.h"
31 #include "gdcmElementSet.h"
32 #include "gdcmSeqEntry.h"
33 #include "gdcmSQItem.h"
34 #include "gdcmValEntry.h"
38 #include <iomanip> // for std::ios::left, ...
41 #include "gdcmDataImages.h"
43 int TestPrintAllDocument(int, char *[])
45 //std::ostringstream s;
48 std::string pixelType, photomInterp;
50 l = strlen("PALETTE COLOR ");
51 while( gdcmDataImages[i] != 0 )
53 std::string filename = GDCM_DATA_ROOT;
54 filename += "/"; //doh!
55 filename += gdcmDataImages[i];
57 gdcm::File *e1= new gdcm::File( filename );
60 // just to be able to grep the display result, for some usefull info
62 //s.setf(std::ios::left);
63 //s << std::setw(60-filename.length()) << " ";
64 //std::cout << s.str() << gdcmDataImages[i];
66 std::cout << gdcmDataImages[i];
68 for ( j=0; j<60-strlen(gdcmDataImages[i]); j++)
71 pixelType = e1->GetPixelType();
72 std::cout << " pixelType=" << pixelType;
73 if (pixelType == "8U" || pixelType == "8S" )
75 std::cout << " Smpl.P.Pix.=" << e1->GetSamplesPerPixel()
76 << " Plan.Config.=" << e1->GetPlanarConfiguration();
77 photomInterp = e1->GetEntryValue(0x0028,0x0004);
79 std::cout << " Photom.Interp.=" << photomInterp;
80 for (j=0; j<l-photomInterp.length(); j++)
83 std::cout << " TransferSyntaxName= [" << e1->GetTransferSyntaxName() << "]" ;
84 swapC = e1->GetSwapCode();
86 std::cout << " SwapCode = " << e1->GetSwapCode();
87 if ( e1->CheckIfEntryExist(0x0088,0x0200) )
88 std::cout << " Icon Image Sequence";
90 std::cout << std::endl;
92 if( e1->IsReadable() )
94 std::cout <<filename << " is Readable"
95 << std::endl << std::endl;
99 std::cout << filename << " is NOT Readable"
100 << std::endl << std::endl;