diff OrthancServer/Sources/OrthancRestApi/OrthancRestResources.cpp @ 4140:0ddc5297a8ab

centralization of default parameters for JSON/DicomMap conversions from DCMTK
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 07 Aug 2020 10:46:50 +0200
parents a4f28efdfccf
children d962a2996637
line wrap: on
line diff
--- a/OrthancServer/Sources/OrthancRestApi/OrthancRestResources.cpp	Thu Aug 06 18:25:47 2020 +0200
+++ b/OrthancServer/Sources/OrthancRestApi/OrthancRestResources.cpp	Fri Aug 07 10:46:50 2020 +0200
@@ -572,7 +572,7 @@
              * interpretation, and with windowing parameters.
              **/ 
             ServerContext::DicomCacheLocker locker(context, publicId);
-            locker.GetDicom().ExtractDicomSummary(dicom, ORTHANC_MAXIMUM_TAG_LENGTH);
+            OrthancConfiguration::DefaultExtractDicomSummary(dicom, locker.GetDicom());
           }
         }
         catch (OrthancException& e)
@@ -1996,7 +1996,7 @@
     ParsedDicomFile dicom(dicomContent);
 
     Json::Value header;
-    dicom.HeaderToJson(header, DicomToJsonFormat_Full);
+    OrthancConfiguration::DefaultDicomHeaderToJson(header, dicom);
 
     AnswerDicomAsJson(call, header);
   }