I tried reading the CSA header from an instance by using the tags, without success. When calling instances/{id}/tags
, Orthanc returns
"0029,1010" :
{
"Name" : "CSAImageHeaderInfo",
"PrivateCreator" : "SIEMENS CSA HEADER",
"Type" : "Null",
"Value" : null
}
which clearly indicates that it’s empty (None
). However, when I download this instance and I try the same using pydicom
ds = pydicom.read_file(dcm)
ds[0x0029, 0x1010].value
>>> b'...'
it does work. Does Orthanc delete this content?