DICOM slice upload function

Dear Orthanc group!

I upload DICOM file to orthanc server.This file has 500M,it takes a long time.
Does the Orthanc server support slice uploading zip files?

Thank you so much.

Hi,

No, a zip file can only be uploaded in one go. However, if you uncompress the zip you may upload individual files in parallel (your browser will do it as well using 4 or 6 concurrent connections).

Hope this helps,

Alain.

Hi,

It is actually possible to upload a ZIP file using the REST API of Orthanc. Here is a sample command line to upload the “archive.zip” file:

$ curl http://localhost:8042/instances --data-binary @archive.zip

This feature was introduced in Orthanc 1.8.2.

Best,
Sébastien-