Specifies the selection intensity and is valid only when the SelectionMaskDepth is 8 (8 bit), otherwise it must be 1.
You can assign a value from 0 to 255 which will be applied to the next or current selection.
// Make a gradient selection (increasing from unselected to fully selected along height of image) // Then convert selection to gray scale ImageEnView1.Deselect(); ImageEnView1.SelectionMaskDepth := 8; for Y := 0 to ImageEnView1.IEBitmap.Height - 1 do for X := 0 to ImageEnView1.IEBitmap.Width - 1 do begin selIntensity := Round( Y / ImageEnView1.IEBitmap.Height * 255 ); ImageEnView1.SelectionMask.SetPixel( X, Y, selIntensity ); end; ImageEnView1.SelectCustom; ImageEnView1.Proc.ConvertToGray(); ImageEnView1.Deselect();