| ImageEn, unit iexColorCurve |
|
TIEColorCurve.GetCurvePoint
Declaration
function GetCurvePoint(Channel: TIECurveChannel; Index: Integer): TPoint;
Description
Returns the position of point, Index, of the specified channel (ieccRGB, ieccRed, ieccGreen or ieccBlue).
Example
// Show all points of the current channel
for i := 0 to IEColorCurve1.GetCurvePointCount( IEColorCurve1.Channel ) do
Memo1.Lines.Add( IntToStr( IEColorCurve1.GetCurvePoint( IEColorCurve1.Channel, i ). X ) + ', ' +
IntToStr( IEColorCurve1.GetCurvePoint( IEColorCurve1.Channel, i ). Y ));
See Also
◼GetCurvePointCount