# HG changeset patch # User Sebastien Jodogne # Date 1620907907 -7200 # Node ID 72af097bb92b342c73a004dc65420be846cf9209 # Parent 3badc205cb4c1ba9b7ea916c03ff11b6af7ecdf1 "Replace" tags in "/modify" and "/anonymize" now supports value representation AT diff -r 3badc205cb4c -r 72af097bb92b NEWS --- a/NEWS Wed May 12 09:32:20 2021 +0200 +++ b/NEWS Thu May 13 14:11:47 2021 +0200 @@ -1,6 +1,8 @@ Pending changes in the mainline =============================== +* "Replace" tags in "/modify" and "/anonymize" now supports value representation AT + Version 1.9.3 (2021-05-07) ========================== diff -r 3badc205cb4c -r 72af097bb92b OrthancFramework/Sources/DicomParsing/FromDcmtkBridge.cpp --- a/OrthancFramework/Sources/DicomParsing/FromDcmtkBridge.cpp Wed May 12 09:32:20 2021 +0200 +++ b/OrthancFramework/Sources/DicomParsing/FromDcmtkBridge.cpp Thu May 13 14:11:47 2021 +0200 @@ -1685,7 +1685,6 @@ case EVR_OB: // other byte case EVR_OW: // other word - case EVR_AT: // attribute tag throw OrthancException(ErrorCode_NotImplemented); case EVR_UN: // unknown value representation @@ -1770,6 +1769,18 @@ /** + * Other types + **/ + + case EVR_AT: // attribute tag, new in Orthanc 1.9.4 + { + DicomTag value = ParseTag(utf8Value); + ok = element.putTagVal(DcmTagKey(value.GetGroup(), value.GetElement())).good(); + break; + } + + + /** * Sequence types, should never occur at this point. **/