public final class ColorTransformOperation
extends com.aspose.ms.System.Enum
Defines color transform operation.
Modifier and Type | Field and Description |
---|---|
static int |
AddAlpha
Adds a parameter's value to an alpha component of the color.
|
static int |
AddBlue
Adds a parameter's value to a blue component of the color.
|
static int |
AddGreen
Adds a parameter to a green component of the color.
|
static int |
AddHue
Adds parameter's value to hue component of the color.
|
static int |
AddLuminance
Adds a parameter's value to a luminance component of the color.
|
static int |
AddRed
Adds a parameter's value to a red component of the color.
|
static int |
AddSaturation
Adds a parameter's value to a saturation component of the color.
|
static int |
Complement
Changes the color to a RGB complementary one.
|
static int |
Gamma
Gamma correction.
|
static int |
Grayscale
Changes the color to a gray one with same lightness.
|
static int |
Inverse
Changes the color to an inverted color.
|
static int |
InverseGamma
Inverse gamma correction.
|
static int |
MultiplyAlpha
Multiplies an alpha component to a parameter's value.
|
static int |
MultiplyBlue
Multiplies a blue component of the color to a parameter's value.
|
static int |
MultiplyGreen
Multiplies a green component of the color to a parameter's value.
|
static int |
MultiplyHue
Multiplies a hue component to a parameter's value.
|
static int |
MultiplyLuminance
Multiplies a luminance component to a parameter's value.
|
static int |
MultiplyRed
Multiplies a red component to a parameter.
|
static int |
MultiplySaturation
Multiplies a saturation component to a parameter's value.
|
static int |
SetAlpha
Defines an alpha component of the color.
|
static int |
SetBlue
Changes a blue component of the color to a parameter's value.
|
static int |
SetGreen
Changes a green component of the color to a parameter's value value.
|
static int |
SetHue
Changes a hue component of the color to a parameter's value.
|
static int |
SetLuminance
Changes a luminance component of the color to a parameter's value.
|
static int |
SetRed
Changes a red component of the color to a parameter's value.
|
static int |
SetSaturation
Changes a saturation component of the color to a parameter's value.
|
static int |
Shade
Shades the color.
|
static int |
Tint
Tints the color.
|
Clone, CloneTo, format, format, get_Caption, get_Value, getName, getName, getNames, getNames, getUnderlyingType, getUnderlyingType, getValue, getValues, isDefined, isDefined, isDefined, isDefined, parse, parse, parse, parse, register, toObject, toString
public static final int Tint
Tints the color. Parameter is in range between 0 (original color) and 1 (white).
public static final int Shade
Shades the color. Parameter is in range between 0 (original color) and 1 (black).
public static final int Complement
Changes the color to a RGB complementary one. m = Max(r, g, b); r = m - r; g = m - g; b = m - b;
public static final int Inverse
Changes the color to an inverted color. r = 1 - r; g = 1 - g; b = 1 - b;
public static final int Grayscale
Changes the color to a gray one with same lightness. Parameter ignored.
public static final int SetAlpha
Defines an alpha component of the color. Parameter is in range between 0 (transparent) and 1 (opaque).
public static final int AddAlpha
Adds a parameter's value to an alpha component of the color. Parameter is in range between -1 and 1.
public static final int MultiplyAlpha
Multiplies an alpha component to a parameter's value.
public static final int SetHue
Changes a hue component of the color to a parameter's value. Parameter is in range between 0 and 360.
public static final int AddHue
Adds parameter's value to hue component of the color. Parameter is in range between -360 and 360.
public static final int MultiplyHue
Multiplies a hue component to a parameter's value.
public static final int SetSaturation
Changes a saturation component of the color to a parameter's value. Parameter is in range between 0 and 1.
public static final int AddSaturation
Adds a parameter's value to a saturation component of the color. Parameter is in range between -1 and 1.
public static final int MultiplySaturation
Multiplies a saturation component to a parameter's value.
public static final int SetLuminance
Changes a luminance component of the color to a parameter's value. Parameter is in range between 0 and 1.
public static final int AddLuminance
Adds a parameter's value to a luminance component of the color. Parameter is in range between -1 and 1.
public static final int MultiplyLuminance
Multiplies a luminance component to a parameter's value.
public static final int SetRed
Changes a red component of the color to a parameter's value. Parameter is in range between 0 and 1.
public static final int AddRed
Adds a parameter's value to a red component of the color. Parameter is in range between -1 and 1.
public static final int MultiplyRed
Multiplies a red component to a parameter.
public static final int SetGreen
Changes a green component of the color to a parameter's value value. Parameter is in range between 0 and 1.
public static final int AddGreen
Adds a parameter to a green component of the color. Parameter is in range between -1 and 1.
public static final int MultiplyGreen
Multiplies a green component of the color to a parameter's value.
public static final int SetBlue
Changes a blue component of the color to a parameter's value. Parameter is in range between 0 and 360.
public static final int AddBlue
Adds a parameter's value to a blue component of the color. Parameter is in range between -1 and 1.
public static final int MultiplyBlue
Multiplies a blue component of the color to a parameter's value.
public static final int Gamma
Gamma correction. Parameter ignored.
public static final int InverseGamma
Inverse gamma correction. Parameter ignored.