]> Creatis software - gdcm.git/blob - Example/PrintFile.cxx
COMP: Those things did not compile on VS60... dont understand what the author meant...
[gdcm.git] / Example / PrintFile.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: PrintFile.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/05/02 17:28:15 $
7   Version:   $Revision: 1.34 $
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 "gdcmDebug.h"
20 #include "gdcmFileHelper.h"
21
22 #include <iostream>
23
24 int main(int argc, char *argv[])
25 {
26    gdcm::File *e1;
27    gdcm::FileHelper   *f1;
28    std::string fileName;
29   
30    if (argc == 1) 
31    {
32       std::cout << " usage : PrintFile fileName printLevel debug "
33           << "short (=NOSEQ + NOSHADOW)" 
34                 << std::endl;
35     return 0;
36    }
37
38    e1 = new gdcm::File();
39
40    if (argc > 1) 
41    {
42       fileName=argv[1];
43    } 
44
45    if (argc > 3)
46       gdcm::Debug::DebugOn();
47
48    if (argc > 4)
49       e1->SetLoadMode(NO_SEQ | NO_SHADOW);   
50    e1->Load( fileName.c_str() );
51
52    if ( !e1->IsReadable() )
53    {
54       delete e1;
55       return 0;
56    }
57
58    f1 = new gdcm::FileHelper(e1);
59
60    if (argc > 2)  // keep it here (f1 needs to be constructed !)
61    {
62       int level = atoi(argv[2]);   
63       f1->SetPrintLevel(level);
64    }
65
66    f1->Print();   
67
68    std::cout << "\n\n" << std::endl; 
69
70    std::cout <<std::endl;
71    std::cout <<" dataSize " << f1->GetImageDataSize() << std::endl;
72    std::cout <<" dataSizeRaw " << f1->GetImageDataRawSize() << std::endl;
73
74    int nX,nY,nZ,sPP,planarConfig;
75    std::string pixelType;
76    nX=e1->GetXSize();
77    nY=e1->GetYSize();
78    nZ=e1->GetZSize();
79    std::cout << " DIMX=" << nX << " DIMY=" << nY << " DIMZ=" << nZ << std::endl;
80
81    pixelType    = e1->GetPixelType();
82    sPP          = e1->GetSamplesPerPixel();
83    planarConfig = e1->GetPlanarConfiguration();
84    
85    std::cout << " pixelType= ["           << pixelType 
86              << "] SamplesPerPixel= ["     << sPP
87              << "] PlanarConfiguration= [" << planarConfig 
88              << "] "<< std::endl 
89              << " PhotometricInterpretation= [" 
90                                 << e1->GetEntryValue(0x0028,0x0004)
91              << "] "<< std::endl;
92
93    int numberOfScalarComponents=e1->GetNumberOfScalarComponents();
94    std::cout << " NumberOfScalarComponents = " << numberOfScalarComponents <<std::endl
95              << " LUT = " << (e1->HasLUT() ? "TRUE" : "FALSE")
96              << std::endl;
97
98   
99    if ( e1->GetEntryValue(0x0002,0x0010) == gdcm::GDCM_NOTLOADED ) 
100    {
101       std::cout << "Transfer Syntax not loaded. " << std::endl
102                 << "Better you increase MAX_SIZE_LOAD_ELEMENT_VALUE"
103                 << std::endl;
104       return 0;
105    }
106   
107    std::string transferSyntaxName = e1->GetTransferSyntaxName();
108    std::cout << " TransferSyntaxName= [" << transferSyntaxName << "]" << std::endl;
109    std::cout << " SwapCode= " << e1->GetSwapCode() << std::endl;
110    
111    if(e1->IsReadable())
112       std::cout <<std::endl<<fileName<<" is Readable"<<std::endl;
113    else
114       std::cout <<std::endl<<fileName<<" is NOT Readable"<<std::endl;
115    std::cout<<std::flush;
116    delete e1;
117    delete f1;
118
119    return 0;
120    
121 }