T O P I C R E V I E W |
AdrianKnowles |
Posted - Oct 03 2018 : 11:25:17 Hi, Just upgrading to the latest version and I note the following no longer works (GetTagDescription). Has there been a change? This excerpt is from your DICOM demo..
var i, j: integer; tag: PIEDicomTag; sDescription: string; sDataType: string; begin for i := 0 to tags.Count - 1 do begin tag := tags.GetTag(i); sDescription := tags.GetTagDescription(i);
Kind regards, Adrian |
3 L A T E S T R E P L I E S (Newest First) |
AdrianKnowles |
Posted - Oct 06 2018 : 08:51:18 Thanks, that sorted it! |
xequte |
Posted - Oct 03 2018 : 18:57:56 Hi Adrian
Yes, as Francesco has described we changed this in v8 because it was adding 400KB to every exe even if you did not use Dicom tags:
https://www.imageen.com/help/Updating%20and%20Compatibility.html
Nigel Xequte Software www.imageen.com |
nwscomps |
Posted - Oct 03 2018 : 12:08:26 Hi Adrian, I add the same problem. It was changed in version 8.
{$IFDEF IMAGEEN_8_0_0_LATER} DicomDescr := trim(IEGetDicomTagDescription(DicomTags, idx, aTagSource)); {$ELSE} DicomDescr := trim(DicomTags.GetTagDescription(idx, aTagSource)); {$ENDIF}
Francesco Savastano Add-ons for the ImageEn Library web: http://www.fssoft.it/delphicomps.html |