X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=Testing%2FTestPrintAllDocument.cxx;h=2122494fec91e46b6d52df44ba212cac1ada708b;hb=725f1d9140fdf297e70125c094601963f635d40a;hp=7325f9c35e98384dab432e5eff23674f82875875;hpb=577f36c1b267196a8bdaf33be0ce9a7322af2e88;p=gdcm.git diff --git a/Testing/TestPrintAllDocument.cxx b/Testing/TestPrintAllDocument.cxx index 7325f9c3..2122494f 100644 --- a/Testing/TestPrintAllDocument.cxx +++ b/Testing/TestPrintAllDocument.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: TestPrintAllDocument.cxx,v $ Language: C++ - Date: $Date: 2005/07/21 04:51:26 $ - Version: $Revision: 1.5 $ + Date: $Date: 2005/09/07 08:48:28 $ + 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 @@ -68,7 +68,13 @@ int TestPrintAllDocument(int, char *[]) //std::cout << s.str() << gdcmDataImages[i]; std::cout << gdcmDataImages[i]; - for (j=0; j<60-strlen(gdcmDataImages[i]); j++) + + unsigned int nbSpaces; + if (strlen(gdcmDataImages[i]) <= 60) + nbSpaces = 60-strlen(gdcmDataImages[i]); + else + nbSpaces = 0; + for (j=0; jGetPixelType(); @@ -77,13 +83,14 @@ int TestPrintAllDocument(int, char *[]) std::cout << " "; std::cout << " Smpl.P.Pix.=" << e1->GetSamplesPerPixel() << " Plan.Config.=" << e1->GetPlanarConfiguration(); - photomInterp = e1->GetEntryValue(0x0028,0x0004); - + + photomInterp = e1->GetEntryValue(0x0028,0x0004); std::cout << " Photom.Interp.=" << photomInterp; for (j=0; jGetTransferSyntaxName() << "]" ; + swapC = e1->GetSwapCode(); if ( swapC != 1234 ) std::cout << " SwapCode = " << e1->GetSwapCode(); @@ -104,7 +111,6 @@ int TestPrintAllDocument(int, char *[]) delete e1; return 1; } - delete e1; i++; }