]> Creatis software - gdcm.git/commitdiff
Fix misstyping
authorjpr <jpr>
Wed, 4 May 2005 07:29:17 +0000 (07:29 +0000)
committerjpr <jpr>
Wed, 4 May 2005 07:29:17 +0000 (07:29 +0000)
Example/PrintFile.cxx
Example/exAnonymizeNoLoad.cxx

index fd42fd8a3c2b1417dc5e9094e3f93081adc0ee58..df97372165317e45e345f06b589416890bfb73dc 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: PrintFile.cxx,v $
   Language:  C++
-  Date:      $Date: 2005/05/03 10:57:27 $
-  Version:   $Revision: 1.35 $
+  Date:      $Date: 2005/05/04 07:29:17 $
+  Version:   $Revision: 1.36 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -50,10 +50,10 @@ int main(int argc, char *argv[])
       e1->SetLoadMode(NO_SEQ | NO_SHADOW); 
 
    // gdcm::File::IsReadable() is no usable here, because we deal with
-   // any kind of gdcm::Readable *document* 
+   // any kind of gdcm-Parsable *document* 
    // not only gdcm::File (as opposed to gdcm::DicomDir)
    res = e1->Load( fileName.c_str() );
-   if ( res )
+   if ( !res )
    {
       delete e1;
       return 0;
@@ -72,7 +72,7 @@ int main(int argc, char *argv[])
    std::cout << "\n\n" << std::endl; 
 
    std::cout <<std::endl;
-   std::cout <<" dataSize " << f1->GetImageDataSize() << std::endl;
+   std::cout <<" dataSize    " << f1->GetImageDataSize()    << std::endl;
    std::cout <<" dataSizeRaw " << f1->GetImageDataRawSize() << std::endl;
 
    int nX,nY,nZ,sPP,planarConfig;
@@ -86,7 +86,7 @@ int main(int argc, char *argv[])
    sPP          = e1->GetSamplesPerPixel();
    planarConfig = e1->GetPlanarConfiguration();
    
-   std::cout << " pixelType= ["           << pixelType 
+   std::cout << " pixelType= ["            << pixelType 
              << "] SamplesPerPixel= ["     << sPP
              << "] PlanarConfiguration= [" << planarConfig 
              << "] "<< std::endl 
index e80cd80118944c376c89e7e5c8014f852d1a4198..52968e0e967685580a5be34b301397298f86e19c 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: exAnonymizeNoLoad.cxx,v $
   Language:  C++
-  Date:      $Date: 2005/05/03 10:57:27 $
-  Version:   $Revision: 1.7 $
+  Date:      $Date: 2005/05/04 07:29:17 $
+  Version:   $Revision: 1.8 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
@@ -56,7 +56,7 @@ int main(int argc, char *argv[])
    // gdcm::File::IsReadable() is no usable here, because we deal with
    // any kind of gdcm::Readable *document*
    // not only gdcm::File (as opposed to gdcm::DicomDir)
-   if (res) {
+   if ( !res ) {
        std::cout <<std::endl
            << "Sorry, " << fileName <<"  not a gdcm-readable "
            << "DICOM / ACR Document"