X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Example%2FWrite.cxx;h=b9632bda2a4da7a581ce57e53908b364972ba511;hb=dc2846f4750cf09f08d5f356792b8a12f2a97a2f;hp=16c6c1395cd4d7caa1544dfba4b2ca12954239d2;hpb=1d69b92978803204089d270599133917d944c651;p=gdcm.git diff --git a/Example/Write.cxx b/Example/Write.cxx index 16c6c139..b9632bda 100644 --- a/Example/Write.cxx +++ b/Example/Write.cxx @@ -1,3 +1,20 @@ +/*========================================================================= + + Program: gdcm + Module: $RCSfile: Write.cxx,v $ + Language: C++ + Date: $Date: 2004/11/16 04:26:18 $ + Version: $Revision: 1.9 $ + + 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 #include #include "gdcm.h" @@ -11,7 +28,7 @@ int main(int argc, char* argv[]) gdcm::File * f1; //gdcmDocument * d; //not used - void* imageData; + uint8_t* imageData; int dataSize; if (argc < 3) { @@ -87,11 +104,12 @@ int main(int argc, char* argv[]) && transferSyntaxName != "Uncompressed ACR-NEMA" ) { std::cout << std::endl << "===========================================" << std::endl; - f1->ParsePixelData(); + f1->GetPixelConverter()->Print(); std::cout << std::endl << "===========================================" << std::endl; } imageData= f1->GetImageData(); + (void)imageData; // to avoid warnings switch (argv[2][0]) { case 'a' :