diff OrthancServer/Resources/Configuration.json @ 4384:7e0d015ad109

new configuration options IngestTranscodingOfUncompressed and IngestTranscodingOfCompressed
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 18 Dec 2020 11:13:00 +0100
parents 3aacd2bd8bbc
children ab5b68f7e948
line wrap: on
line diff
--- a/OrthancServer/Resources/Configuration.json	Thu Dec 17 15:10:57 2020 +0100
+++ b/OrthancServer/Resources/Configuration.json	Fri Dec 18 11:13:00 2020 +0100
@@ -634,6 +634,16 @@
      "IngestTranscoding" : "1.2.840.10008.1.2",
   **/
 
+  // Whether ingest transcoding is applied to incoming DICOM instances
+  // that have an uncompressed transfer syntax, i.e. Little Endian
+  // Implicit, Little Endian Explicit or Big Endian Explicit (new in
+  // Orthanc 1.8.2).
+  "IngestTranscodingOfUncompressed" : true,
+  
+  // Whether ingest transcoding is applied to incoming DICOM instances
+  // that have a compressed transfer syntax (new in Orthanc 1.8.2).
+  "IngestTranscodingOfCompressed" : true,
+  
   // The compression level that is used when transcoding to one of the
   // lossy/JPEG transfer syntaxes (integer between 1 and 100).
   "DicomLossyTranscodingQuality" : 90,