From 7be24dfff4577d9d80ebfa864df09788f149f46d Mon Sep 17 00:00:00 2001 From: jpr Date: Wed, 14 Dec 2005 10:02:13 +0000 Subject: [PATCH] *Default* Pixel Spacing with 1.0\1.0, don't *force* it! --- src/gdcmFileHelper.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/gdcmFileHelper.cxx b/src/gdcmFileHelper.cxx index 56df8eb7..afb5ef92 100644 --- a/src/gdcmFileHelper.cxx +++ b/src/gdcmFileHelper.cxx @@ -4,8 +4,8 @@ Module: $RCSfile: gdcmFileHelper.cxx,v $ Language: C++ - Date: $Date: 2005/11/30 13:42:19 $ - Version: $Revision: 1.85 $ + Date: $Date: 2005/12/14 10:02:13 $ + Version: $Revision: 1.86 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -1359,11 +1359,11 @@ void FileHelper::CheckMandatoryElements() std::string pixelSpacing = FileInternal->GetEntryString(0x0028,0x0030); if ( pixelSpacing == GDCM_UNKNOWN ) + { pixelSpacing = "1.0\\1.0"; - else // if missing, Pixel Spacing forced to "1.0\1.0" - CopyMandatoryEntry(0x0028,0x0030,"1.0\\1.0"); - + CopyMandatoryEntry(0x0028,0x0030,"1.0\\1.0"); + } // 'Imager Pixel Spacing' : defaulted to 'Pixel Spacing' // --> This one is the *legal* one ! // FIXME : we should write it only when we are *sure* the image comes from -- 2.48.1