Esempio n. 1
0
        private void UpdateCanvas()
        {
            Bitmap     dstImage = new Bitmap(srcImage.Width, srcImage.Height);
            Adjustment a        = new Adjustment();

            dstImage = a.AdjustHsl((Bitmap)srcImage.Clone(), this.Hue, this.Saturation, this.Luminance);

            this.panel1.BackgroundImage = dstImage;
            this.FinalImage             = (Bitmap)dstImage.Clone();
        }