X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Example%2FBatchUncompress.cxx;h=3fa30c662ece7be1a167e606611328e5cc74a71a;hb=9fc41d585113e37d4d1d1d511e61d2e638096fb3;hp=14ce4e38c03aae94959f116ebdbef25b60c68e7f;hpb=aed339028b8f3af17ae97874379853c8a9534c88;p=gdcm.git diff --git a/Example/BatchUncompress.cxx b/Example/BatchUncompress.cxx index 14ce4e38..3fa30c66 100644 --- a/Example/BatchUncompress.cxx +++ b/Example/BatchUncompress.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: BatchUncompress.cxx,v $ Language: C++ - Date: $Date: 2005/12/12 23:46:52 $ - Version: $Revision: 1.1 $ + Date: $Date: 2007/06/21 15:06:12 $ + Version: $Revision: 1.4 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -22,6 +22,9 @@ * Someone at some point could update it to have more option, like not copying the private tags, * sequence... */ + + // Well ... ReWrite.cxx does the same thing + #include "gdcmFile.h" #include "gdcmFileHelper.h" #include "gdcmDocument.h" @@ -38,13 +41,13 @@ int main(int argc, char *argv[]) const char *inputfilename = argv[1]; const char *outputfilename = argv[2]; - gdcm::File *input = new gdcm::File( ); + GDCM_NAME_SPACE::File *input = new GDCM_NAME_SPACE::File( ); input->SetFileName( inputfilename ); // input->SetLoadMode(loadMode); input->Load(); if ( input->IsReadable() ) { - gdcm::FileHelper *output = new gdcm::FileHelper( input ); + GDCM_NAME_SPACE::FileHelper *output = new GDCM_NAME_SPACE::FileHelper( input ); output->GetImageData(); //EXTREMELY IMPORTANT //Otherwise ReadPixel == -1 -> the dicom writing fails completely @@ -52,6 +55,9 @@ int main(int argc, char *argv[]) uint8_t *imageData = output->GetImageData(); output->SetImageData( imageData, dataSize); + // lossy compression would be a pixel modification. + // uncompress is *not* + fh->SetContentType(GDCM_NAME_SPACE::UNMODIFIED_PIXELS_IMAGE); output->WriteDcmExplVR( outputfilename ); delete output;