1 /*=========================================================================
4 Module: $RCSfile: TestDcm2Acr.cxx,v $
6 Date: $Date: 2004/11/16 04:26:18 $
7 Version: $Revision: 1.4 $
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 =========================================================================*/
22 int main(int argc, char* argv[])
29 printf (" Before gdcmFile() \n");
30 printf ("\n\n---------------------------------------\n\n");
34 f1 = new gdcm::File(toto);
36 std::string filename = GDCM_DATA_ROOT;
37 filename += "/test.acr";
38 f1 = new gdcm::File(filename.c_str());
40 printf (" Sortie gdcmFile() \n");
42 //e1.PrintPubDict(std::cout);
43 f1->GetHeader()->Print();
45 //cle = gdcmDictEntry::TranslateToKey(0x0028,0x0008);
47 int dataSize = f1->GetImageDataSize();
48 printf ("dataSize %d\n",dataSize);
50 // void* imageData= f1->GetHeader()->GetImageData();
52 // Ecriture d'un Raw File, a afficher avec affim filein= dim= nbit= signe=
53 //f1->WriteRawData("image.raw");
55 // ecriture d'un fichier DICOM à partir d'un dcmHeader correct.
57 //f1->WriteDcmImplVR("image.dcm");
59 // ecriture d'un fichier ACR à partir d'un dcmHeader correct.
61 sprintf(zozo, "%s.nema", toto.c_str());
63 printf ("\n\n---------------------------------------\n\n");
65 f1->GetHeader()->Print();