ImageEn, unit iexColorCurve |
|
TIEColorCurve.Channel
Declaration
property Channel: TIECurveChannel;
Description
Specifies which color channel is displayed in the color curve editor.
Note: The image is affected by changes to the color curve for all channels, not only the visible channel.
Default: ieccRGB
// Display the Green channel
IEColorCurve1.Channel := ieccGreen;
// User edits the curve
...
// Display the Blue channel
IEColorCurve1.Channel := ieccBlue;
...
// Apply color changes in Green and Blue channels to our image
IEColorCurve1.ApplyCurve( ImageEnView1.IEBitmap );
ImageEnView1.Update();