X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Example%2FexColorToRGB.cxx;h=583d44f6e60bbe682550c34a8d53b46dd3195d1f;hb=90c918a795e4a1892af2cd120eb20d6311499387;hp=15263fb0e080a65be20ddc3a0ac3b33eed5dcdd4;hpb=e4071f248493a36a1b8109fffcb924a255152b36;p=gdcm.git diff --git a/Example/exColorToRGB.cxx b/Example/exColorToRGB.cxx index 15263fb0..583d44f6 100644 --- a/Example/exColorToRGB.cxx +++ b/Example/exColorToRGB.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: exColorToRGB.cxx,v $ Language: C++ - Date: $Date: 2005/02/09 14:39:48 $ - Version: $Revision: 1.1 $ + Date: $Date: 2005/09/06 11:10:03 $ + Version: $Revision: 1.7 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -23,6 +23,7 @@ #include "gdcmBinEntry.h" #include "gdcmSeqEntry.h" +#include // for exit int main(int argc, char *argv[]) { @@ -49,13 +50,14 @@ int main(int argc, char *argv[]) // ============================================================ // a gdcm::File contains all the Dicom Field but the Pixels Element - gdcm::File *f1= new gdcm::File( fileName ); - - std::cout << argv[1] << std::endl; - f1 = new gdcm::File( fileName ); - if (!f1->IsReadable()) { + gdcm::File *f = new gdcm::File(); + f->SetLoadMode( gdcm::LD_ALL); + f->SetFileName( fileName ); + bool res = f->Load(); + + if (!res) { std::cerr << "Sorry, " << fileName <<" not a gdcm-readable " << "DICOM / ACR File" <IsMonochrome()) { + if (!f->IsMonochrome()) { std::cerr << "Sorry, " << fileName <<" not a 'color' File " << " " <GetImageData(); + uint8_t *imageData = fh->GetImageData(); if ( imageData == 0 ) { @@ -91,15 +95,15 @@ int main(int argc, char *argv[]) } - - // ------ User wants write a new image without shadow groups ------------- // ------ without Sequences ------------- - gdcm::FileHelper *copy = new gdcm::FileHelper( output ); + gdcm::FileHelper *copy = new gdcm::FileHelper( ); + copy->SetFileName( output ); + copy->Load(); - gdcm::DocEntry *d = f1->GetFirstEntry(); + gdcm::DocEntry *d = f->GetFirstEntry(); while(d) { // We skip SeqEntries, since user cannot do much with them @@ -125,19 +129,19 @@ int main(int argc, char *argv[]) // We skip gdcm::SeqEntries } } - d = f1->GetNextEntry(); + d = f->GetNextEntry(); } // User knows the image is a 'color' one -RGB, YBR, Palette Color- // and wants to write it as RGB - copy->SetImageData(imageData, fh1->GetImageDataSize()); + copy->SetImageData(imageData, fh->GetImageDataSize()); copy->SetWriteModeToRGB(); copy->WriteDcmExplVR( output ); - delete f1; - delete fh1; + delete f; + delete fh; delete copy; exit (0);