ImageEn for Delphi and C++ Builder ImageEn for Delphi and C++ Builder

 

ImageEn Forum
Profile    Join    Active Topics    Forum FAQ    Search this forumSearch
 All Forums
 ImageEn Library for Delphi, C++ and .Net
 ImageEn and IEvolution Support Forum
 create sequence

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

View 
UserName:
Password:
Format  Bold Italicized Underline  Align Left Centered Align Right  Horizontal Rule  Insert Hyperlink   Browse for an image to attach to your post Browse for a zip to attach to your post Insert Code  Insert Quote Insert List
   
Message 

 

Emoji
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Black Eye [B)]
Frown [:(] Shocked [:0] Angry [:(!] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

T O P I C    R E V I E W
hamidshali Posted - Mar 16 2015 : 09:39:07
hi how create sequence in dicom tag by AddTag or settagstring
2   L A T E S T    R E P L I E S    (Newest First)
xequte Posted - Jun 06 2016 : 20:05:34
FYI, this has been added in v6.3.1 with the new Sorted property.

  Children := TObjectList.Create();
  SubTags := TIEDicomTags.Create();
  SubTags.Sorted := false;

  SubTags.SetTagNumeric( $4, $1400, 0, False );
  SubTags.SetTagNumeric( $4, $1410, 65535, False );
  SubTags.SetTagNumeric( $4, $1420, 0, False );
  SubTags.SetTagString( $4, $1430, 'PATIENT', False );

  SubTags.SetTagNumeric( $4, $1400, 0, False );
  SubTags.SetTagNumeric( $4, $1410, 65535, False );
  SubTags.SetTagNumeric( $4, $1420, 0, False );
  SubTags.SetTagString( $4, $1430, 'STUDY', False );

  SubTags.SetTagNumeric( $4, $1400, 0, False );
  SubTags.SetTagNumeric( $4, $1410, 65535, False );
  SubTags.SetTagNumeric( $4, $1420, 0, False );
  SubTags.SetTagString( $4, $1430, 'SERIES', False );

  SubTags.SetTagNumeric( $4, $1400, 0, False );
  SubTags.SetTagNumeric( $4, $1410, 65535, False );
  SubTags.SetTagNumeric( $4, $1420, 0, False );
  SubTags.SetTagString( $4, $1430, 'IMAGE', False );
  SubTags.SetTagString( $4, $1500, 'C:\FileName.jpg', False );

  Children.Add( SubTags );
  ImageEnMView1.MIO.Params[0].DICOM_Tags.AddTag( 4, $1220, dvSQ, nil, -1, Children );


Nigel
Xequte Software
www.xequte.com
nigel@xequte.com
xequte Posted - Mar 17 2015 : 23:08:34
Hi

It is not possible because the tags will be ordered internally by their location (group and element).


Nigel
Xequte Software
www.xequte.com
nigel@xequte.com