From the official web site of Orthanc, we may find that the way Orthanc anonymize the file:
curl http://localhost:8042/instances/6e67da51-d119d6ae-c5667437-87b9a8a5-0f07c49f/anonymize -X POST -d '{}' > Anonymized.dcm
So this step will create a anonymized dcm file.
My problem:
Let's say on my hard disk is a dcm file, I need to do anonymize on it, base on the Orthanc official web site work flow, what I need to do is:
- Upload the dcm file to Orthanc
- Create a new anonymized dcm file
- Upload the new dcm file and delete the old dcm file from Orthanc
My question:
Is there a way to directly convert the dcm file into anonymized format in Orthanc?