Note: You must be registered in order to post a reply. To register, click here. Registration is FREE!
T O P I C R E V I E W
jwest
Posted - May 21 2016 : 16:24:55 Hi,
I am trying to create a dicomdir file. I am getting an exception when I set the tag ($20,$10) with a empty value.
var da1:TIEDicomTags; as1:TImageEnVect; ss:string; begin ... da1 := TIEDicomTags.Create; if assigned(as1.IO.Params.DICOM_Tags.GetTag($20, $10)) then begin ss:=trim(as1.IO.Params.DICOM_Tags.GetTagString($20, $10)); //Here ss='' da1.SetTagString($20, $10, ss); --->Exception end; ...
What am I doing wrong?
4 L A T E S T R E P L I E S (Newest First)
xequte
Posted - Jun 06 2016 : 18:01:12 Hi
We have a fix for this in our latest beta. Please email me for the source.
Type 2: Required to be in the SOP Instance but may contain the value of "unknown", or a zero length value. (http://dicomlookup.com/type.asp)
1. I am trying to create a DICOMDIR file filling many tags manually, and I need that tag with a empty value or "unknown". Can I put the string "unknown" as the name says?
2. Other question, is possible create a tag(group, element) empty and fill your tags childrens? How could I do it?