X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Example%2FTestWriteSimple.cxx;h=f194fe0518b6214149118913d895024c0ac8eca5;hb=b792278a90bb8f54b77595a073d435c2041dabf3;hp=df717bf4299b69e10d65954d912cec968b9c9f0f;hpb=8fca7bc2830904113dbb5521c009775d964c5c98;p=gdcm.git diff --git a/Example/TestWriteSimple.cxx b/Example/TestWriteSimple.cxx index df717bf4..f194fe05 100644 --- a/Example/TestWriteSimple.cxx +++ b/Example/TestWriteSimple.cxx @@ -1,4 +1,22 @@ -#include "gdcm.h" +/*========================================================================= + + Program: gdcm + Module: $RCSfile: TestWriteSimple.cxx,v $ + Language: C++ + Date: $Date: 2004/12/03 20:16:55 $ + 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 + 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" int main(int argc, char* argv[]) { @@ -13,24 +31,23 @@ int main(int argc, char* argv[]) std::string header = argv[1]; const char *output = argv[2]; - gdcmHeader *f1 = new gdcmHeader( header ); - gdcmFile *f2 = new gdcmFile( f1 ); + gdcm::Header *f1 = new gdcm::Header( header ); + gdcm::File *f2 = new gdcm::File( f1 ); // If the following call is important, then the API sucks. Why is it // required to allocate PixelData when we are not using it !? - void* PixelData = f2->GetImageData(); //EXTREMELY IMPORTANT + uint8_t* PixelData = f2->GetImageData(); //EXTREMELY IMPORTANT //Otherwise ReadPixel == -1 -> the dicom writing fails completely int dataSize = f2->GetImageDataSize(); // unsigned char cast is necessary to be able to delete the buffer // since deleting a void* is not allowed in c++ - char *imageData = (char*)f2->GetImageData(); + uint8_t* imageData = (uint8_t*)f2->GetImageData(); f2->SetImageData( imageData, dataSize); f2->WriteDcmExplVR( output ); - delete[] imageData; delete f1; delete f2; //delete PixelData; //Does GetImageData return the same pointer ?