Example usage for Java com.itextpdf.text BaseColor fields, constructors, methods, implement or subclass
The text is from its open source code.
BaseColor | WHITE |
BaseColor | LIGHT_GRAY |
BaseColor | GRAY |
BaseColor | DARK_GRAY |
BaseColor | BLACK |
BaseColor | RED |
BaseColor | PINK |
BaseColor | ORANGE |
BaseColor | YELLOW |
BaseColor | GREEN |
BaseColor | MAGENTA |
BaseColor | CYAN |
BaseColor | BLUE |
BaseColor(final int red, final int green, final int blue) | |
BaseColor(final float red, final float green, final float blue) Construct a BaseColor with float values. | |
BaseColor(final int argb) Construct a BaseColor by setting the combined value. | |
BaseColor(final int red, final int green, final int blue, final int alpha) Construct a new BaseColor. | |
BaseColor(final float red, final float green, final float blue, final float alpha) Construct a BaseColor with float values. |
BaseColor | brighter() Make this BaseColor brighter. |
BaseColor | darker() Make this color darker. |
int | getBlue() |
int | getGreen() |
int | getRed() |
String | toString() |