|
PDF Clown 0.1.2 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<BlendModeEnum> org.pdfclown.documents.contents.BlendModeEnum
@PDF(value=PDF14) public enum BlendModeEnum
Blend mode to be used in the transparent imaging model [PDF:1.7:7.2.4].
Enum Constant Summary | |
---|---|
Color
Create a color with the hue and saturation of the source color and the luminosity of the backdrop color. |
|
ColorBurn
Darken the backdrop color to reflect the source color. |
|
ColorDodge
Brighten the backdrop color to reflect the source color. |
|
Darken
Select the darker of the backdrop and source colors. |
|
Difference
Subtract the darker of the two constituent colors from the lighter color. |
|
Exclusion
Produce an effect similar to that of the Difference mode but lower in contrast. |
|
HardLight
Multiply or screen the colors, depending on the source color value. |
|
Hue
Create a color with the hue of the source color and the saturation and luminosity of the backdrop color. |
|
Lighten
Select the lighter of the backdrop and source colors. |
|
Luminosity
Create a color with the luminosity of the source color and the hue and saturation of the backdrop color. |
|
Multiply
Multiply the backdrop and source color values. |
|
Normal
Select the source color, ignoring the backdrop. |
|
Overlay
Multiply or screen the colors, depending on the backdrop color value. |
|
Saturation
Create a color with the saturation of the source color and the hue and luminosity of the backdrop color. |
|
Screen
Multiply the complements of the backdrop and source color values, then complement the result. |
|
SoftLight
Darken or lighten the colors, depending on the source color value. |
Method Summary | |
---|---|
static BlendModeEnum |
get(PdfName value)
Gets the blend mode corresponding to the given value. |
PdfName |
getCode()
|
static BlendModeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static BlendModeEnum[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final BlendModeEnum Normal
public static final BlendModeEnum Multiply
public static final BlendModeEnum Screen
public static final BlendModeEnum Overlay
public static final BlendModeEnum Darken
public static final BlendModeEnum Lighten
public static final BlendModeEnum ColorDodge
public static final BlendModeEnum ColorBurn
public static final BlendModeEnum HardLight
public static final BlendModeEnum SoftLight
public static final BlendModeEnum Difference
public static final BlendModeEnum Exclusion
public static final BlendModeEnum Hue
public static final BlendModeEnum Saturation
public static final BlendModeEnum Color
public static final BlendModeEnum Luminosity
Method Detail |
---|
public static BlendModeEnum[] values()
for (BlendModeEnum c : BlendModeEnum.values()) System.out.println(c);
public static BlendModeEnum valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic static BlendModeEnum get(PdfName value)
public PdfName getCode()
|
PDF Clown 0.1.2 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |