]> Creatis software - gdcm.git/blob - Example/PrintFile.cxx
* Add usefull comments in Header
[gdcm.git] / Example / PrintFile.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: PrintFile.cxx,v $
5   Language:  C++
6   Date:      $Date: 2004/11/23 17:12:25 $
7   Version:   $Revision: 1.11 $
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 <iostream>
19 #include "gdcm.h"
20
21 int main(int argc, char* argv[])
22 {
23  
24    gdcm::Header *e1;
25    gdcm::File   *f1;
26    std::string fileName;   
27    if (argc != 2) {
28       std::cout << " usage : PrintDocument fileName" << std::endl;
29    }
30
31    if (argc > 1) {
32       fileName=argv[1];
33    } else {
34       fileName += GDCM_DATA_ROOT;
35       fileName += "/test.acr";
36    }
37    
38    e1= new gdcm::Header( fileName.c_str() );
39
40    f1 = new gdcm::File(e1);
41
42    e1->SetPrintLevel(2);
43    
44    e1->Print();
45       
46    std::cout << "\n\n" << std::endl; 
47
48    int dataSize = f1->GetImageDataSize();
49    std::cout <<std::endl <<" dataSize " << dataSize << std::endl;
50    int nX,nY,nZ,sPP,planarConfig;
51    std::string pixelType;
52    nX=e1->GetXSize();
53    nY=e1->GetYSize();
54    nZ=e1->GetZSize();
55    std::cout << " DIMX=" << nX << " DIMY=" << nY << " DIMZ=" << nZ << std::endl;
56
57    pixelType    = e1->GetPixelType();
58    sPP          = e1->GetSamplesPerPixel();
59    planarConfig = e1->GetPlanarConfiguration();
60    
61    std::cout << " pixelType="           << pixelType 
62              << " SamplesPerPixel="     << sPP
63              << " PlanarConfiguration=" << planarConfig 
64              << std::endl 
65              << " PhotometricInterpretation=" 
66                                 << e1->GetEntryByNumber(0x0028,0x0004)
67              << std::endl;
68
69    int numberOfScalarComponents=e1->GetNumberOfScalarComponents();
70    std::cout << " NumberOfScalarComponents " << numberOfScalarComponents <<std::endl;
71
72   
73   if ( e1->GetEntryByNumber(0x0002,0x0010) == gdcm::GDCM_NOTLOADED ) {
74      std::cout << "Transfert Syntax not loaded. " << std::endl
75                << "Better you increase MAX_SIZE_LOAD_ELEMENT_VALUE"
76                << std::endl;
77       return 0;
78   }
79   
80    std::string transferSyntaxName = e1->GetTransfertSyntaxName();
81    std::cout << " TransferSyntaxName= [" << transferSyntaxName << "]" << std::endl;
82    
83    if (  transferSyntaxName != "Implicit VR - Little Endian"
84       && transferSyntaxName != "Explicit VR - Little Endian"     
85       && transferSyntaxName != "Deflated Explicit VR - Little Endian"      
86       && transferSyntaxName != "Explicit VR - Big Endian"
87       && transferSyntaxName != "Uncompressed ACR-NEMA"     )
88   {
89       std::cout << std::endl << "==========================================="
90                   << std::endl; 
91          f1->GetPixelConverter()->Print();
92       std::cout << std::endl << "==========================================="
93                   << std::endl; 
94    }      
95    
96    if(e1->IsReadable())
97       std::cout <<std::endl<<fileName<<" is Readable"<<std::endl;
98    else
99       std::cout <<std::endl<<fileName<<" is NOT Readable"<<std::endl;
100    std::cout<<std::flush;
101    delete e1;
102
103    return 0;
104    
105 }