Package com.lowagie.text.pdf
Class CMYKColor
- java.lang.Object
-
- java.awt.Color
-
- com.lowagie.text.pdf.ExtendedColor
-
- com.lowagie.text.pdf.CMYKColor
-
- All Implemented Interfaces:
Paint,Transparency,Serializable
public class CMYKColor extends ExtendedColor
- Author:
- Paulo Soares (psoares@consiste.pt)
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class com.lowagie.text.pdf.ExtendedColor
MAX_COLOR_VALUE, MAX_FLOAT_COLOR_VALUE, MAX_INT_COLOR_VALUE, type, TYPE_CMYK, TYPE_GRAY, TYPE_PATTERN, TYPE_RGB, TYPE_SEPARATION, TYPE_SHADING
-
Fields inherited from class java.awt.Color
BLACK, blue, BLUE, CYAN, DARK_GRAY, darkGray, gray, GRAY, green, GREEN, LIGHT_GRAY, lightGray, MAGENTA, orange, ORANGE, pink, PINK, red, RED, white, WHITE, YELLOW
-
Fields inherited from interface java.awt.Transparency
BITMASK, OPAQUE, TRANSLUCENT
-
-
Constructor Summary
Constructors Constructor Description CMYKColor(float floatCyan, float floatMagenta, float floatYellow, float floatBlack)Construct a CMYK Color.CMYKColor(float floatCyan, float floatMagenta, float floatYellow, float floatBlack, float floatAlpha)Construct a CMYK Color.CMYKColor(int intCyan, int intMagenta, int intYellow, int intBlack)Constructs a CMYK Color based on 4 color values (values are integers from 0 to 255).CMYKColor(int intCyan, int intMagenta, int intYellow, int intBlack, int intAlpha)Constructs a CMYK Color based on 4 color values (values are integers from 0 to 255).
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)floatgetBlack()floatgetCyan()floatgetMagenta()floatgetYellow()inthashCode()-
Methods inherited from class com.lowagie.text.pdf.ExtendedColor
getType, getType
-
Methods inherited from class java.awt.Color
brighter, createContext, darker, decode, getAlpha, getBlue, getColor, getColor, getColor, getColorComponents, getColorComponents, getColorSpace, getComponents, getComponents, getGreen, getHSBColor, getRed, getRGB, getRGBColorComponents, getRGBComponents, getTransparency, HSBtoRGB, RGBtoHSB, toString
-
-
-
-
Constructor Detail
-
CMYKColor
public CMYKColor(int intCyan, int intMagenta, int intYellow, int intBlack)Constructs a CMYK Color based on 4 color values (values are integers from 0 to 255).- Parameters:
intCyan- cyan valueintMagenta- magenta valueintYellow- yellow valueintBlack- black value
-
CMYKColor
public CMYKColor(int intCyan, int intMagenta, int intYellow, int intBlack, int intAlpha)Constructs a CMYK Color based on 4 color values (values are integers from 0 to 255).- Parameters:
intCyan- cyan valueintMagenta- magenta valueintYellow- yellow valueintBlack- black valueintAlpha- alpha value
-
CMYKColor
public CMYKColor(float floatCyan, float floatMagenta, float floatYellow, float floatBlack)Construct a CMYK Color.- Parameters:
floatCyan- cyan valuefloatMagenta- magenta valuefloatYellow- yellow valuefloatBlack- black value
-
CMYKColor
public CMYKColor(float floatCyan, float floatMagenta, float floatYellow, float floatBlack, float floatAlpha)Construct a CMYK Color.- Parameters:
floatCyan- cyan valuefloatMagenta- magenta valuefloatYellow- yellow valuefloatBlack- black valuefloatAlpha- alpha value
-
-