X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Example%2FTestCopyDicom.cxx;h=b13d002e31c7e4ee7879e9ecccd314b187fb6909;hb=02899c034acb29e15219663f18bfee580fdfb266;hp=e94b5a991737f8da38077f7c07a98efdf68c2b35;hpb=dbcde8e6df2bcc9eef8a249111a500f289214ace;p=gdcm.git diff --git a/Example/TestCopyDicom.cxx b/Example/TestCopyDicom.cxx index e94b5a99..b13d002e 100644 --- a/Example/TestCopyDicom.cxx +++ b/Example/TestCopyDicom.cxx @@ -1,10 +1,30 @@ +/*========================================================================= + + Program: gdcm + Module: $RCSfile: TestCopyDicom.cxx,v $ + Language: C++ + Date: $Date: 2004/11/19 08:37:55 $ + Version: $Revision: 1.14 $ + + Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de + l'Image). All rights reserved. See Doc/License.txt or + http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details. + + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the above copyright notices for more information. + +=========================================================================*/ #include "gdcmHeader.h" #include "gdcmFile.h" #include "gdcmDocument.h" #include "gdcmValEntry.h" +#include "gdcmBinEntry.h" #ifndef _WIN32 -#include +#include //for access, unlink +#else +#include //for _access #endif // return true if the file exists @@ -46,75 +66,89 @@ int main(int argc, char* argv[]) return 1; } - if( FileExists( argv[2] ) ) - { - std::cerr << "Don't try to cheat, I am removing the file anyway" << std::endl; - if( !RemoveFile( argv[2] ) ) +// don't modify identation in order to let this source xdiffable with ../Test + + std::string filename = argv[1]; + std::string output = argv[2]; + + if( FileExists( output.c_str() ) ) { - std::cerr << "Ouch, the file exist, but I cannot remove it" << std::endl; - return 1; + std::cerr << "Don't try to cheat, I am removing the file anyway" << std::endl; + if( !RemoveFile( output.c_str() ) ) + { + std::cerr << "Ouch, the file exist, but I cannot remove it" << std::endl; + return 1; + } } - } - gdcmFile *original = new gdcmFile( argv[1] ); + gdcm::File *original = new gdcm::File( filename ); - std::cout << "--- Original ----------------------" << std::endl; - //original->GetHeader()->Print(); + std::cout << "--- Original ----------------------" << std::endl; + //original->GetHeader()->Print(); - gdcmFile *copy = new gdcmFile( argv[2] ); + gdcm::File *copy = new gdcm::File( output ); + + const gdcm::TagDocEntryHT & Ht = original->GetHeader()->GetTagHT(); - //First of all copy the header field by field + size_t dataSize = original->GetImageDataSize(); + uint8_t* imageData = original->GetImageData(); + (void)imageData; + (void)dataSize; - // Warning :Accessor gdcmElementSet::GetEntry() should not exist - //It was commented out by Mathieu, that was a *good* idea - // (the user does NOT have to know the way we implemented the Header !) - - TagDocEntryHT & Ht = original->GetHeader()->GetEntry(); - - for (TagDocEntryHT::iterator tag = Ht.begin(); tag != Ht.end(); ++tag) - { - if (tag->second->GetVR() == "SQ") //to skip pb of SQ recursive exploration - continue; - - //According to JPR I should also skip those: - if (tag->second->GetVR() == "unkn") //to skip pb of SQ recursive exploration - continue; - - std::string value = ((gdcmValEntry*)(tag->second))->GetValue(); - if( value.find( "gdcm::NotLoaded" ) != 0 ) - continue; - -// the following produce a seg fault at write time: -// if( value.find( "gdcm::Loaded" ) != 0 ) -// continue; - - //std::cerr << "Reading: " << tag->second->GetVR() << std::endl; - //tag->second->Print(); std::cout << std::endl; - - //std::cerr << "Reading: " << value << std::endl; - - // Well ... Should have dynamic cast here - copy->GetHeader()->ReplaceOrCreateByNumber( - value, - tag->second->GetGroup(), - tag->second->GetElement() ); - - // todo : Setting Offset to 0 to avoid further missprint - } + //First of all copy the header field by field + + // Warning :Accessor gdcmElementSet::GetEntry() should not exist + // It was commented out by Mathieu, that was a *good* idea + // (the user does NOT have to know the way we implemented the Header !) + // Waiting for a 'clean' solution, I keep the method ...JPRx + + gdcm::DocEntry* d; + + for (gdcm::TagDocEntryHT::const_iterator tag = Ht.begin(); tag != Ht.end(); ++tag) + { + d = tag->second; + d->Print(); std::cout << std::endl; + if ( gdcm::BinEntry* b = dynamic_cast(d) ) + { + copy->GetHeader()->ReplaceOrCreateByNumber( + b->GetBinArea(), + b->GetLength(), + b->GetGroup(), + b->GetElement(), + b->GetVR() ); + } + else if ( gdcm::ValEntry* v = dynamic_cast(d) ) + { + copy->GetHeader()->ReplaceOrCreateByNumber( + v->GetValue(), + v->GetGroup(), + v->GetElement(), + v->GetVR() ); + } + else + { + // We skip pb of SQ recursive exploration + //std::cout << "Skipped Sequence " + // << "------------- " << d->GetVR() << " "<< std::hex + // << d->GetGroup() << " " << d->GetElement() + // << std::endl; + } + } + + + - size_t dataSize = original->GetImageDataSize(); - void *imageData = original->GetImageData(); - copy->GetImageData(); - copy->SetImageData(imageData, dataSize); + //copy->GetImageData(); + //copy->SetImageData(imageData, dataSize); - std::cout << "--- Copy ----------------------" << std::endl; - std::cout <GetHeader()->Print(); - std::cout << "--- ---- ----------------------" << std::endl; + std::cout << "--- Copy ----------------------" << std::endl; + std::cout <GetHeader()->Print(); + std::cout << "--- ---- ----------------------" << std::endl; - copy->WriteDcmExplVR( argv[2] ); + copy->WriteDcmExplVR( output ); - return 0; + return 0; }