Hi everyone,
I’m trying to C-STORE a study from Orthanc to another DICOM application.
However I get the error:
DCMTK was unable to transcode from 1.2.840.10008.1.2.4.70 to one of: 1.2.840.10008.1.2.1
Internal error while transcoding to 1.2.840.10008.1.2.1
So I did some googling, and found that 1.2.840.10008.1.2.4.70 = JPEG Lossless, and I also found this wiki.
-
Is this error hinting that I need GDCM to handle JPEG lossless transcoding instead of DCMTK?
-
How do I install GDCM on Orthanc in 64-bit Windows?
Is it already installed by default, since I see OrthancGdcm.dll already appears in the “C:\Program Files\Orthanc Server\Plugins” folder, and I also see it mentioned in the logs.
The wiki seems to suggest otherwise, and seems like it needs to be installed so I followed the wiki and downloaded the 64-bit OrthancGdcm-mainline.dll, and placed it “C:\Program Files\Orthanc Server\Plugins\OrthancGdcm-mainline.dll”
- With the Orthanc.json file , I already had:
“Plugins” : [ “C:\Program Files\Orthanc Server\Plugins” ],
Do i need to change it to:
“Plugins” : [ “C:\Program Files\Orthanc Server\Plugins”, “C:\Program Files\Orthanc Server\Plugins\OrthancGdcm-mainline.dll”],
Thanks!