Mar 16, 2025 10:40 AM
by boskar
Hello again,
Feature request: overlay.xml is great, no GUI required etc, but - once again in my work I came across it's insufficient.
I kindly ask for a way to process dicom tag values before they are presented to the user.
I would like to have: simple maths, truncating.
Maybe it's already supported by the xml library You use? msxml6?
Rationale:
Tag: 0019:105A Acquisition Duration, type FL, example value: 156400000
Preferred display: 2 m 36 s
maths required:
MINUTES = floor ( $x / (1000000 * 60) )
SECONDS = floor ( $x / 1000000 mod 60 )
Maybe some regexp engine would be useful?