]> Creatis software - gdcm.git/blob - Example/PrintFile.cxx
* src/gdcmDocEntryArchive.[h|cxx] : bug fix and add a method to temporary
[gdcm.git] / Example / PrintFile.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: PrintFile.cxx,v $
5   Language:  C++
6   Date:      $Date: 2004/11/24 10:23:46 $
7   Version:   $Revision: 1.12 $
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              << " LUT=" << (e1->HasLUT() ? "TRUE" : "FALSE")
72              << std::endl;
73
74   
75   if ( e1->GetEntryByNumber(0x0002,0x0010) == gdcm::GDCM_NOTLOADED ) {
76      std::cout << "Transfert Syntax not loaded. " << std::endl
77                << "Better you increase MAX_SIZE_LOAD_ELEMENT_VALUE"
78                << std::endl;
79       return 0;
80   }
81   
82    std::string transferSyntaxName = e1->GetTransfertSyntaxName();
83    std::cout << " TransferSyntaxName= [" << transferSyntaxName << "]" << std::endl;
84    
85    if (  transferSyntaxName != "Implicit VR - Little Endian"
86       && transferSyntaxName != "Explicit VR - Little Endian"     
87       && transferSyntaxName != "Deflated Explicit VR - Little Endian"      
88       && transferSyntaxName != "Explicit VR - Big Endian"
89       && transferSyntaxName != "Uncompressed ACR-NEMA"     )
90   {
91       std::cout << std::endl << "==========================================="
92                   << std::endl; 
93          f1->GetPixelConverter()->Print();
94       std::cout << std::endl << "==========================================="
95                   << std::endl; 
96    }      
97    
98    if(e1->IsReadable())
99       std::cout <<std::endl<<fileName<<" is Readable"<<std::endl;
100    else
101       std::cout <<std::endl<<fileName<<" is NOT Readable"<<std::endl;
102    std::cout<<std::flush;
103    delete e1;
104
105    return 0;
106    
107 }