DICOM Conformance Statement for version 1.12.6

Hi
I need the exact orthanc dicom conformance statement for v1.12.6.

Can someone help me with that?

On the mercurial repo there are no old tagged releases / versions only the latest .

Hi
You can download the Dicom Conformance statement through the api.

HTH.

James

1 Like

Great answer!
Took me a minute to get it working. Therefore, here is the full solution for anyone else running into the same issue:

# Start Orthanc in a Docker container (map host port 8050 to container port 8042)
docker run --name torthanc -d -p:8050:8042 jodogne/orthanc

# Query the DICOM conformance statement (authentication required by default)
curl -u orthanc:orthanc localhost:8050/tools/dicom-conformance
  • Note: The default username and password are orthanc:orthanc.
  • If you have changed the credentials or configuration, adjust as needed.