hi
i use SelectColors for select one color in layer..n
it is work and select color in image but when use
if (ImageEnVect1.Selected) then
begin
memo1.Lines.Clear;
with ImageEnVect1 do
for i:=0 to ImageEnVect1.PolySelCount-1 do
memo1.Lines.Add( IntToStr( ImageEnVect1.PolySelPoints[i].X ) + ','+ IntToStr(ImageEnVect1.PolySelPoints[i].Y ) );
end;
i cannot reach to points in selection
how get points in selection by SelectColors
thanx