ExposureCurveEffect
Simulates increasing or decreasing the exposure of a photograph
using Windows.Win32.Graphics.GdiPlus;
namespace System.Drawing.Imaging.Effects
{
public class ExposureCurveEffect : ColorCurveEffect
{
public int Exposure => base.AdjustValue;
public ExposureCurveEffect(CurveChannel channel, int exposure)
: base(CurveAdjustments.AdjustExposure, channel, exposure)
{
}
}
}