ImageEn, unit ieDicomTags
IEDicomGetTagInfoEx
Declaration
function IEDicomGetTagInfoEx(Group, Element: Word; out DInfo:
TIEDicomTagInfoEx
): Boolean; overload;
procedure IEDicomGetTagInfoEx(Idx: Integer; out DInfo:
TIEDicomTagInfoEx
); overload;
Description
Returns details on a specified Dicom tag.
Result is false if the tag is not found for a Group/Element pair.
Note:
◼
Add ieDicomTags to your uses clause to support
IEDicomGetTagInfoEx
◼
ieDicomTags adds about 400KB to your exe
Example
// Get a list of all Dicom tag descriptions
for i := 0 to ImageEnView1.IO.Params.DICOM_Tags.Count - 1 do
memo1.Lines.Add( IEDicomGetTagInfoEx( ImageEnView1.IO.Params.DICOM_Tags, i ).Desc;
Loading contents...