Orthanc endpoint /studies/{UUID}/download-as-jpeg-archive is returning 404

Dear Orthanc Team,

I’m following the guide here:

For setting up Orthanc with Keycloak authentication service.

The setup went well although I have to make some changes to use the VolView as will as built in OHIF.

We’re evaluating integrating other HTML5 DICOM Viewers that are FDA cleared and CE certified to use with the Orthanc setup as well.

However I’m mostly confused by following line:

In which it suggests add a button to download DICOM as jpeg archive on the explorer view as a few lines below when the study is being shared but according to my test this endpoint is returning 404 not found in our setup.

Maybe I’m missing something?

Appreciate any insights.

Hi,

This should not have been there. I have just removed them.

Thanks for reporting the issue

Alain

Thank you for the quick response.

I understand it is not intended for the example however I would like to know if it would be possible to setup this endpoint for use with our instance? It would be great in case we need to embed images in the patient portals.

Thank you for your patience.

Hi @film33illuminator

The sample python plugin is available here.

1 Like

Thank you for the help!

I’m getting:

No module named 'PIL'

Seems I need a way to add the pillow module to orthancteam/orthanc:25.10.5 docker image somehow.

Hi,

You could add Pillow to the Docker image with an overriding of the Orthanc image. something like that:

FROM orthancteam/orthanc

RUN apt-get update && apt-get install -y python3-pillow