Apachai.Effects.SepiaEffect.SepiaEffect C# (CSharp) Method

SepiaEffect() public method

public SepiaEffect ( ) : System
return System
        public SepiaEffect()
        {
            desat = new UnaryPixelOps.Desaturate ();
            level = new UnaryPixelOps.Level (
                PixelData.Black,
                PixelData.White,
                new float[] { 1.2f, 1.0f, 0.8f },
                PixelData.Black,
                PixelData.White);
        }