X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=Example%2FTestCopyDicom.cxx;h=3c4a579a1254ab5c71bc042a7e9bf0fe2fb25dda;hb=fe2d1ed161ad70897d6aaeda19965ffb68f8bb66;hp=c8f67dc934e7bfdd8702e9f18bec55d2d353411e;hpb=b8e0590883fbaf04288c45cf1149ce1989e6e01f;p=gdcm.git diff --git a/Example/TestCopyDicom.cxx b/Example/TestCopyDicom.cxx index c8f67dc9..3c4a579a 100644 --- a/Example/TestCopyDicom.cxx +++ b/Example/TestCopyDicom.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: TestCopyDicom.cxx,v $ Language: C++ - Date: $Date: 2005/07/08 12:02:02 $ - Version: $Revision: 1.25 $ + Date: $Date: 2005/09/07 08:33:29 $ + Version: $Revision: 1.27 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -88,11 +88,15 @@ int main(int argc, char *argv[]) std::cout << "--- Original ----------------------" << std::endl; //original->GetFile()->Print(); - gdcm::FileHelper *copy = new gdcm::FileHelper( output ); - - size_t dataSize = original->GetImageDataSize(); - uint8_t *imageData = original->GetImageData(); - (void)imageData; + gdcm::FileHelper *copy = new gdcm::FileHelper( ); + copy->SetFileName( output ); + copy->Load(); + + size_t dataSize; + uint8_t *imageData; + dataSize = original->GetImageDataSize(); + imageData = original->GetImageData(); + (void)imageData; // no enough to avoid warning on 'Golgot' (void)dataSize; //First of all copy the header field by field