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
 [IEvolution] Annotation

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
Jitheshk Posted - Jun 12 2012 : 20:06:10
How can we draw and insert annotations by using the mouse or manually? I am not getting transparent rect to hilight an area of an image. Please help
3   L A T E S T    R E P L I E S    (Newest First)
fab Posted - Jun 18 2012 : 01:24:30
Using IEvolution you have to write:

templatebox = (IEObjectBox)ieViewer1.Image.Annotations.GetTemplateObject(IEObjectType.Box);
templatebox.HighLight = true;

Above code will make next object an highlighted box.
For a demo please look at "annotations". Examples are only in C#.

Jitheshk Posted - Jun 13 2012 : 05:03:47

Hi Thanks for the quick reply, I am using Vb6/.Net, I couldn't find the method Box heighlight, Is it possible to give me VB6 sample code and sample code for getting co-ordinations of a Zone?
fab Posted - Jun 12 2012 : 23:14:41
Please look at samples in "Annotations" folder.
Highlighting an area (as done in Annotations sample) is done with Box object and setting ObjBoxHighLight[]=true.