comparison Resources/Configuration.json @ 3939:c205f670098e transcoding

new configuration options: BuiltinDecoderTranscoderOrder and IngestTranscoding
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 18 May 2020 17:15:16 +0200
parents 41eec97c23ef
children 596912ebab5f
comparison
equal deleted inserted replaced
3938:54dbebbcc032 3939:c205f670098e
552 // this option specifies whether the built-in decoder/transcoder of 552 // this option specifies whether the built-in decoder/transcoder of
553 // Orthanc (that uses DCMTK) is applied before or after the plugins, 553 // Orthanc (that uses DCMTK) is applied before or after the plugins,
554 // or is not applied at all (new in Orthanc 1.7.0). The allowed 554 // or is not applied at all (new in Orthanc 1.7.0). The allowed
555 // values for this option are "After" (default value, corresponding 555 // values for this option are "After" (default value, corresponding
556 // to the behavior of Orthanc <= 1.6.1), "Before", or "Disabled". 556 // to the behavior of Orthanc <= 1.6.1), "Before", or "Disabled".
557 "BuiltinDecoderTranscoderOrder" : "After" 557 "BuiltinDecoderTranscoderOrder" : "After",
558
559 // If this option is set, Orthanc will transparently transcode any
560 // incoming DICOM instance to the given transfer syntax before
561 // storing it into its database. Beware that this might result in
562 // high CPU usage (if transcoding to some compressed transfer
563 // syntax), or in higher disk consumption (if transcoding to an
564 // uncompressed syntax). Also, beware that transcoding to a transfer
565 // syntax with lossy compression (notably JPEG) will change the
566 // "SOPInstanceUID" DICOM tag, and thus the Orthanc identifier at
567 // the instance level, which might break external workflow.
568 /**
569 "IngestTranscoding" : "1.2.840.10008.1.2",
570 **/
571
572 // The compression level that is used when transcoding to one of the
573 // lossy/JPEG transfer syntaxes (integer between 1 and 100).
574 "DicomLossyTranscodingQuality" : 90
558 } 575 }