Aurigma Graphics Mill 5.5 for .NET
Brightness Class
This class enables you to correct brightness of the image.
Namespace:
Aurigma.GraphicsMill.Transforms
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
Syntax
Visual Basic
Public NotInheritable Class Brightness _ Inherits PerChannelBitmapTransform
C#
public sealed class Brightness : PerChannelBitmapTransform
Remarks
This class provides simple brightness adjustment functionality. Being extremely easy-to-use for end user (it has the single parameter Amount), it is used by professional retouchers very seldom (because as usual it leads to losses of details in highlights and/or shadows).
You can also use this transform in automatic mode using Auto property.
If you want to apply both brightness and contrast, you should consider BrightnessContrast transform. Both of these operation will be performed at the single pass, so it will work faster than sequential execution of Brightness and Contrast.
Examples
Visual Basic
Dim brightness As New Aurigma.GraphicsMill.Transforms.Brightness brightness.Amount = 0.2 brightness.ApplyTransform(bitmap)
C#
Aurigma.GraphicsMill.Transforms.Brightness brightness =
new Aurigma.GraphicsMill.Transforms.Brightness();
brightness.Amount = 0.2f;
brightness.ApplyTransform(bitmap);
Inheritance Hierarchy
System..::.Object
L
Aurigma.GraphicsMill..::.SyncHandler
L
Aurigma.GraphicsMill..::.UnitConverterHandler
L
Aurigma.GraphicsMill.Transforms..::.BitmapTransform
L
Aurigma.GraphicsMill.Transforms..::.MaskedBitmapTransform
L
Aurigma.GraphicsMill.Transforms..::.PerChannelBitmapTransform
L
Aurigma.GraphicsMill.Transforms..::.Brightness
Thread Safety
Static members of this type are safe for multi-threaded operations. Instance members of this type are safe for multi-threaded operations.
Supported Pixel Formats
| Member Name | Description |
|---|---|
| Format8bppGrayScale | 8 bits per pixel. Grayscale. 8 bits are used for luminosity level. |
| Format16bppGrayScale | 16 bits per pixel. Grayscale. All 16 bits are used for luminosity level (extended pixel format). |
| Format16bppAGrayScale | 16 bits per pixel. Grayscale with alpha channel. 8 bits are used for alpha channel and other 8 bits are used for luminosity level. |
| Format32bppAGrayScale | 32 bits per pixel. Grayscale with alpha channel. 16 bits are used for alpha channel and other 16 bits are used for luminosity level (extended pixel format). |
| 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). |
| Format32bppCmyk | 32 bits per pixel. CMYK. 8 bits each are used for the cyan, magenta, yellow, and black components. |
| Format64bppCmyk | 64 bits per pixel. CMYK. 16 bits each are used for the cyan, magenta, yellow, and black components (extended pixel format). |
| Format80bppAcmyk | 80 bits per pixel. CMYK with alpha channel. 16 bits each are used for the alpha, cyan, magenta, yellow, and black components (extended pixel format). |