X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Example%2FTestCopyDicom.cxx;h=9916f6a44108ae5111390d5e56f9c1829d1640ce;hb=bd60287496e2943a7f60b9d21cba8247dbbffb88;hp=e292ade4be02dc05421661d9f66cdb58e11e0464;hpb=ebd08ff48aec7a04c4b96fad2124872a6c290939;p=gdcm.git diff --git a/Example/TestCopyDicom.cxx b/Example/TestCopyDicom.cxx index e292ade4..9916f6a4 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/09/21 13:05:40 $ - Version: $Revision: 1.28 $ + Date: $Date: 2005/09/22 14:45:11 $ + Version: $Revision: 1.29 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -97,10 +97,14 @@ int main(int argc, char *argv[]) //size_t dataSize; uint8_t *imageData; //dataSize = original->GetImageDataSize();// just an accesor :useless here - imageData = original->GetImageData(); - (void)imageData; // no enough to avoid warning on 'Golgot' - //(void)dataSize; + + imageData = original->GetImageData(); // VERY important : + // brings pixels in memory ! + //(void)imageData; // not enough to avoid warning with icc compiler + //(void)dataSize; // not enough to avoid warning on 'Golgot' + std::cout << imageData << std::endl; // to avoid warning ? + //First of all copy the header field by field gdcm::DocEntry *d = original->GetFile()->GetFirstEntry();