]> Creatis software - clitk.git/blobdiff - tools/clitkDicomInfo.cxx
clitkDicomToImage added to clitk3
[clitk.git] / tools / clitkDicomInfo.cxx
index 4c31e0922807322e19c93404cd37cb6016d6c1fc..990f68454eb46f8a2e660aeacd1c535a20c2a366 100644 (file)
@@ -1,7 +1,7 @@
 /*=========================================================================
   Program:   vv                     http://www.creatis.insa-lyon.fr/rio/vv
 
-  Authors belong to: 
+  Authors belong to:
   - University of LYON              http://www.universite-lyon.fr/
   - Léon Bérard cancer center       http://oncora1.lyon.fnclcc.fr
   - CREATIS CNRS laboratory         http://www.creatis.insa-lyon.fr
@@ -30,7 +30,8 @@
 #include "gdcmFile.h"
 
 //--------------------------------------------------------------------
-int main(int argc, char * argv[]) {
+int main(int argc, char * argv[])
+{
 
   // init command line
   GGO(clitkDicomInfo, args_info);
@@ -42,12 +43,12 @@ int main(int argc, char * argv[]) {
   for(unsigned int i=0; i<args_info.inputs_num; i++) {
     gdcm::File *header = new gdcm::File();
     header->SetFileName(args_info.inputs[i]);
-    header->SetMaxSizeLoadEntry(16384);
+    header->SetMaxSizeLoadEntry(163840);
     header->Load();
     header->Print();
   }
 
-  // this is the end my friend  
+  // this is the end my friend
   return 0;
 }
 //--------------------------------------------------------------------