Program: gdcm
Module: $RCSfile: TestPrintAllDocument.cxx,v $
Language: C++
- Date: $Date: 2005/06/08 04:01:41 $
- Version: $Revision: 1.3 $
+ Date: $Date: 2005/07/05 18:47:38 $
+ 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
//std::ostringstream s;
int i = 0;
int swapC;
+ unsigned int j;
std::string pixelType, photomInterp;
int l;
l = strlen("PALETTE COLOR ");
//std::cout << s.str() << gdcmDataImages[i];
std::cout << gdcmDataImages[i];
- unsigned int j;
- for ( j=0; j<60-strlen(gdcmDataImages[i]); j++)
+ for (j=0; j<60-strlen(gdcmDataImages[i]); j++)
std::cout << " ";
pixelType = e1->GetPixelType();
std::cout << " pixelType=" << pixelType;
- if (pixelType == "8U" || pixelType == "8S" )
+ if ( pixelType == "8U" || pixelType == "8S" )
std::cout << " ";
std::cout << " Smpl.P.Pix.=" << e1->GetSamplesPerPixel()
<< " Plan.Config.=" << e1->GetPlanarConfiguration();
std::cout << " TransferSyntaxName= [" << e1->GetTransferSyntaxName() << "]" ;
swapC = e1->GetSwapCode();
- if (swapC != 1234)
+ if ( swapC != 1234 )
std::cout << " SwapCode = " << e1->GetSwapCode();
if ( e1->CheckIfEntryExist(0x0088,0x0200) )
std::cout << " Icon Image Sequence";
Program: gdcm
Module: $RCSfile: TestValidate.cxx,v $
Language: C++
- Date: $Date: 2005/06/14 20:33:53 $
- Version: $Revision: 1.1 $
+ Date: $Date: 2005/07/05 18:47:38 $
+ Version: $Revision: 1.2 $
Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
l'Image). All rights reserved. See Doc/License.txt or
int TestValidate(int argc, char *argv[])
{
if( argc < 2 )
- {
- std::cerr << "ouh les cornes" << std::endl;
+ {
+ std::cerr << "ouh les cornes / shame on you" << std::endl;
return 1;
- }
+ }
const char *filename = argv[1];