com.aspose.slides
Class ColorTransformOperationEx

java.lang.Object
  extended by com.aspose.ms.java.Enum
      extended by com.aspose.slides.ColorTransformOperationEx

public final class ColorTransformOperationEx
extends com.aspose.ms.java.Enum

Defines color transform operation.


Nested Class Summary
 
Nested classes/interfaces inherited from class com.aspose.ms.java.Enum
com.aspose.ms.java.Enum.AbstractEnum, com.aspose.ms.java.Enum.FlaggedEnum, com.aspose.ms.java.Enum.SimpleEnum
 
Field Summary
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.
 
Fields inherited from class com.aspose.ms.java.Enum
EnumSeparatorCharArray
 
Method Summary
 
Methods inherited from class com.aspose.ms.java.Enum
format, format, get_Caption, get_Value, getName, getNames, getNames, getUnderlyingType, getUnderlyingType, getValue, getValues, isDefined, parse, parse, parse, parse, register, toObject
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

Tint

public static final int Tint

Tints the color. Parameter is in range between 0 (original color) and 1 (white).

See Also:
Constant Field Values

Shade

public static final int Shade

Shades the color. Parameter is in range between 0 (original color) and 1 (black).

See Also:
Constant Field Values

Complement

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;

See Also:
Constant Field Values

Inverse

public static final int Inverse

Changes the color to an inverted color. r = 1 - r; g = 1 - g; b = 1 - b;

See Also:
Constant Field Values

Grayscale

public static final int Grayscale

Changes the color to a gray one with same lightness. Parameter ignored.

See Also:
Constant Field Values

SetAlpha

public static final int SetAlpha

Defines an alpha component of the color. Parameter is in range between 0 (transparent) and 1 (opaque).

See Also:
Constant Field Values

AddAlpha

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.

See Also:
Constant Field Values

MultiplyAlpha

public static final int MultiplyAlpha

Multiplies an alpha component to a parameter's value.

See Also:
Constant Field Values

SetHue

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.

See Also:
Constant Field Values

AddHue

public static final int AddHue

Adds parameter's value to hue component of the color. Parameter is in range between -360 and 360.

See Also:
Constant Field Values

MultiplyHue

public static final int MultiplyHue

Multiplies a hue component to a parameter's value.

See Also:
Constant Field Values

SetSaturation

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.

See Also:
Constant Field Values

AddSaturation

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.

See Also:
Constant Field Values

MultiplySaturation

public static final int MultiplySaturation

Multiplies a saturation component to a parameter's value.

See Also:
Constant Field Values

SetLuminance

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.

See Also:
Constant Field Values

AddLuminance

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.

See Also:
Constant Field Values

MultiplyLuminance

public static final int MultiplyLuminance

Multiplies a luminance component to a parameter's value.

See Also:
Constant Field Values

SetRed

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.

See Also:
Constant Field Values

AddRed

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.

See Also:
Constant Field Values

MultiplyRed

public static final int MultiplyRed

Multiplies a red component to a parameter.

See Also:
Constant Field Values

SetGreen

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.

See Also:
Constant Field Values

AddGreen

public static final int AddGreen

Adds a parameter to a green component of the color. Parameter is in range between -1 and 1.

See Also:
Constant Field Values

MultiplyGreen

public static final int MultiplyGreen

Multiplies a green component of the color to a parameter's value.

See Also:
Constant Field Values

SetBlue

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.

See Also:
Constant Field Values

AddBlue

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.

See Also:
Constant Field Values

MultiplyBlue

public static final int MultiplyBlue

Multiplies a blue component of the color to a parameter's value.

See Also:
Constant Field Values

Gamma

public static final int Gamma

Gamma correction. Parameter ignored.

See Also:
Constant Field Values

InverseGamma

public static final int InverseGamma

Inverse gamma correction. Parameter ignored.

See Also:
Constant Field Values