X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=src%2FgdcmFile.cxx;h=ef4814503b16b88530e0f8f05b890d40f892a784;hb=0bdb2cf3697eb9f09a5452bfb072563bc0f13e76;hp=9d435e133f60c9cc2783907bc7d676fbe47ea751;hpb=247c979db58d7bfd1d65029de05f4142a534c4c8;p=gdcm.git diff --git a/src/gdcmFile.cxx b/src/gdcmFile.cxx index 9d435e13..ef481450 100644 --- a/src/gdcmFile.cxx +++ b/src/gdcmFile.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmFile.cxx,v $ Language: C++ - Date: $Date: 2005/10/25 15:28:49 $ - Version: $Revision: 1.296 $ + Date: $Date: 2005/10/27 09:52:33 $ + Version: $Revision: 1.298 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -863,7 +863,6 @@ int File::GetPlanarConfiguration() DataEntry *entry = GetDataEntry(0x0028,0x0006); if( !entry ) { - gdcmWarningMacro( "Not found : Planar Configuration (0028,0006)"); return 0; } return (int)entry->GetValue(0); @@ -1474,10 +1473,10 @@ bool File::Write(std::string fileName, FileType writetype) // Derma?.dcm does not have it...let's remove it FIXME FIXME if( writetype != JPEG ) - { + { int i_lgPix = GetEntryLength(GrPixel, NumPixel); if (i_lgPix != -2) - { + { // no (GrPixel, NumPixel) element std::string s_lgPix = Util::Format("%d", i_lgPix+12); s_lgPix = Util::DicomString( s_lgPix.c_str() );