This class enables you to perform adjusting image in HSL color space.
Namespace:
Aurigma.GraphicsMill.Transforms
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
Public NotInheritable Class AdjustHsl _ Inherits MaskedBitmapTransform
public sealed class AdjustHsl : MaskedBitmapTransform
To use this transform, you should supply values for Hue, Saturation, and Lightness which will be added to appropriate components in HSL color space to each pixel.
'... bitmap instantiation is omitted for brevity Dim hsl As New Aurigma.GraphicsMill.Transforms.AdjustHsl hsl.Hue = 0.1F hsl.Saturation = -0.2F hsl.Lightness = 0.1F hsl.ApplyTransform(bitmap)
//... bitmap instantiation is omitted for brevity Aurigma.GraphicsMill.Transforms.AdjustHsl hsl = new Aurigma.GraphicsMill.Transforms.AdjustHsl(); hsl.Hue = 0.1F; hsl.Saturation = -0.2F; hsl.Lightness = 0.1F; hsl.ApplyTransform(bitmap);
Member Name | Description |
---|---|
Format24bppRgb | 24 bits per pixel. RGB. 8 bits each are used for the red, green, and blue components. |
Format32bppRgb | 32 bits per pixel. RGB. 8 bits each are used for the red, green, and blue components. The rest 8 bits are unused. |
Format32bppArgb | 32 bits per pixel. RGB with alpha channel. 8 bits each are used for the alpha, red, green, and blue components. |
Format48bppRgb | 48 bits per pixel. RGB. 16 bits each are used for the red, green, and blue components (extended pixel format). |
Format64bppArgb | 64 bits per pixel. RGB with alpha channel. 16 bits each are used for the alpha, red, green, and blue components (extended pixel format). |