X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Example%2FTestChangeHeader.cxx;h=aa4ae3bc09772f5f0c8b29e5b5f9a634c8ecf5f3;hb=8eb6643e0eca8afde0e463fd5e98ae7f5fe1e7bc;hp=708d82fc32b5a59c122b9c3caa9e2a3edefb8355;hpb=978f699b97794e209f9d20e2a33a72404bda54ef;p=gdcm.git diff --git a/Example/TestChangeHeader.cxx b/Example/TestChangeHeader.cxx index 708d82fc..aa4ae3bc 100644 --- a/Example/TestChangeHeader.cxx +++ b/Example/TestChangeHeader.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: TestChangeHeader.cxx,v $ Language: C++ - Date: $Date: 2004/11/16 04:26:18 $ - Version: $Revision: 1.4 $ + Date: $Date: 2005/01/08 15:03:57 $ + Version: $Revision: 1.6 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -27,7 +27,7 @@ int main(int argc, char* argv[]) { std::cerr << "usage :" << std::endl << argv[0] << " nomFichierPourEntete nomFichierPourDonnées" << -std::endl; + std::endl; return 1; } @@ -37,19 +37,14 @@ std::endl; // 0018 1310 US ACQ Acquisition Matrix gdcm::DictEntry *dictEntry = - f2->GetHeader()->GetPubDict()->GetDictEntryByName( "Acquisition Matrix" ); + f2->GetHeader()->GetPubDict()->GetDictEntry( 0x0018, 1310 ); std::cerr << std::hex << dictEntry->GetGroup() << "," << dictEntry->GetElement() << std::endl; - // std::string matrix = f2->GetHeader()->GetEntryByNumber(0x0018, 0x1310); - // Or, strictly equivalent (a little bit longer at run-time !): - std::string matrix = f2->GetHeader()->GetEntryByName("Acquisition Matrix"); + std::string matrix = f2->GetHeader()->GetEntry(0x0018, 0x1310); if(matrix != "gdcm::Unfound") { std::cerr << "Aquisition Matrix:" << matrix << std::endl; - f1->GetHeader()->ReplaceOrCreateByNumber( matrix, 0x0018, 0x1310); - - //f1->GetHeader()->ReplaceOrCreateByNumber( matrix, dictEntry->GetGroup(), - // dictEntry->GetElement()); + f1->GetHeader()->ReplaceOrCreate( matrix, 0x0018, 0x1310); } f1->GetImageData();