1 /*=========================================================================
4 Module: $RCSfile: TestDcm2Acr.cxx,v $
6 Date: $Date: 2004/12/03 20:16:55 $
7 Version: $Revision: 1.5 $
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 #include "gdcmHeader.h"
23 int main(int argc, char* argv[])
30 std::cout << " Before gdcmFile()" << std::endl;
31 std::cout << "\n\n---------------------------------------" << std::endl;
36 f1 = new gdcm::File(toto);
40 std::string filename = GDCM_DATA_ROOT;
41 filename += "/test.acr";
42 f1 = new gdcm::File(filename);
44 std::cout << " Sortie gdcmFile()" << std::endl;
46 //e1.PrintPubDict(std::cout);
47 f1->GetHeader()->Print();
49 //cle = gdcmDictEntry::TranslateToKey(0x0028,0x0008);
51 int dataSize = f1->GetImageDataSize();
52 std::cout << "dataSize:" << dataSize << std::endl;
54 // void* imageData= f1->GetHeader()->GetImageData();
56 // Ecriture d'un Raw File, a afficher avec affim filein= dim= nbit= signe=
57 //f1->WriteRawData("image.raw");
59 // ecriture d'un fichier DICOM à partir d'un dcmHeader correct.
61 //f1->WriteDcmImplVR("image.dcm");
63 // ecriture d'un fichier ACR à partir d'un dcmHeader correct.
65 zozo = toto + ".nema";
67 std::cout << "\n\n---------------------------------------\n\n" << std::endl;
69 f1->GetHeader()->Print();