X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Example%2FexGC.cxx;h=6cff2a3b8be576253c337fd78af25e1a28a262b4;hb=278965e64eb49669b1a05493843f97144d8323b4;hp=0458b2efd815ef73edf3c7078270229c15461b4f;hpb=dfa6db1c22f6b67eceb10c1ef94a91a643e36dd2;p=gdcm.git diff --git a/Example/exGC.cxx b/Example/exGC.cxx index 0458b2ef..6cff2a3b 100644 --- a/Example/exGC.cxx +++ b/Example/exGC.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: exGC.cxx,v $ Language: C++ - Date: $Date: 2005/07/06 15:49:31 $ - Version: $Revision: 1.4 $ + Date: $Date: 2005/07/19 15:19:25 $ + 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 @@ -73,13 +73,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( 0x00000000); + 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 ) { @@ -118,9 +119,11 @@ int main(int argc, char *argv[]) // ------ 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 @@ -146,10 +149,10 @@ int main(int argc, char *argv[]) // We skip gdcm::SeqEntries } } - d = f1->GetNextEntry(); + d = f->GetNextEntry(); } - int imageSize = fh1->GetImageDataSize(); + int imageSize = fh->GetImageDataSize(); // Black up all 'grey' pixels int i; int n = 0; @@ -194,8 +197,8 @@ int main(int argc, char *argv[]) copy->WriteDcmExplVR( output ); - delete f1; - delete fh1; + delete f; + delete fh; delete copy; exit (0);