Note: You must be registered in order to post a reply. To register, click here. Registration is FREE!
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.