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
 Selection Anti-aliasing

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
yssoft Posted - Dec 09 2011 : 11:28:23
Hi,
Which way can i do selection Anti-aliasing when i select by miSelectPolygon or miSelectCircle and miSelectLasso?

Thanks.
1   L A T E S T    R E P L I E S    (Newest First)
fab Posted - Dec 09 2011 : 11:43:43
There isn't a method to make selection antialiased.
Anyway you can smooth the selection setting:

// set selection depth=8 (8 bit) instead of 1
ImageEnView.SelectionMaskDepth := 8;

// now make a selection (here a rectangle in code)
ImageEnView.Select( 10,10, 100,100 );

// now make the selection feathered
ImageEnView.MakeSelectionFeather( 4 );


However this is not exactly an antialias, but can help.