WhiteSaturationCurveEffect
Sets the white saturation of an image. The white saturation is the point at which the lightest areas of the image
are converted to white.
using Windows.Win32.Graphics.GdiPlus;
namespace System.Drawing.Imaging.Effects
{
public class WhiteSaturationCurveEffect : ColorCurveEffect
{
public int WhiteSaturation => base.AdjustValue;
public WhiteSaturationCurveEffect(CurveChannel channel, int whiteSaturation)
: base(CurveAdjustments.AdjustWhiteSaturation, channel, whiteSaturation)
{
}
}
}