iText 8.0.5 API
|
Color space to specify colors according to CMYK color model. More...
Public Member Functions |
|
DeviceCmyk () | |
Creates DeviceCmyk color with all colorants intensities initialised as zeroes. More... |
|
DeviceCmyk (int c, int m, int y, int k) | |
Creates DeviceCmyk color by intensities of cyan, magenta, yellow and black colorants. More... |
|
DeviceCmyk???????? (float c, float m, float y, float k) | |
Creates DeviceCmyk color by intensities of cyan, magenta, yellow and black colorants. More... |
|
Public Member Functions inherited from iText.Kernel.Colors.Color | |
virtual int | GetNumberOfComponents () |
Returns the number of color value components More... |
|
virtual PdfColorSpace | GetColorSpace () |
Returns the color space to which the color is related. More... |
|
virtual float[] | GetColorValue () |
Returns the color value of the color More... |
|
virtual void | SetColorValue (float[] value) |
Sets the color value of the color More... |
|
override int | GetHashCode () |
override bool | Equals (Object o) |
Indicates whether the color is equal to the given color. More... |
|
Static Public Attributes |
|
static readonly iText.Kernel.Colors.DeviceCmyk | CYAN |
Predefined cyan DeviceCmyk color More... |
|
static readonly iText.Kernel.Colors.DeviceCmyk | MAGENTA |
Predefined magenta DeviceCmyk color More... |
|
static readonly iText.Kernel.Colors.DeviceCmyk | YELLOW |
Predefined yellow DeviceCmyk color More... |
|
static readonly iText.Kernel.Colors.DeviceCmyk | BLACK |
Predefined black DeviceCmyk color More... |
|
Additional Inherited Members |
|
Package Functions inherited from iText.Kernel.Colors.Color | |
Color (PdfColorSpace colorSpace, float[] colorValue) | |
Creates a Color of certain color space and color value. More... |
|
Package Attributes inherited from iText.Kernel.Colors.Color | |
PdfColorSpace | colorSpace |
The color space of the color More... |
|
float[] | colorValue |
The color value of the color More... |
|
Color space to specify colors according to CMYK color model.
|
inline |
Creates DeviceCmyk color with all colorants intensities initialised as zeroes.
|
inline |
Creates DeviceCmyk color by intensities of cyan, magenta, yellow and black colorants.
Creates DeviceCmyk color by intensities of cyan, magenta, yellow and black colorants. The intensities are considered to be in [0, 100] gap, if not, the intensity will be considered as 100 (when colorant's value is bigger than 100) or 0 (when colorant's value is less than 0).
c | the intensity of cyan colorant |
m | the intensity of magenta colorant |
y | the intensity of yellow colorant |
k | the intensity of black colorant |
|
inline |
Creates DeviceCmyk color by intensities of cyan, magenta, yellow and black colorants.
Creates DeviceCmyk color by intensities of cyan, magenta, yellow and black colorants. The intensities are considered to be in [0, 1] interval, if not, the intensity will be considered as 1 (when colorant's value is bigger than 1) or 0 (when colorant's value is less than 0).
c | the intensity of cyan colorant |
m | the intensity of magenta colorant |
y | the intensity of yellow colorant |
k | the intensity of black colorant |
|
inlinestatic |
Returns DeviceCmyk color which is darker than given one
cmykColor | the DeviceCmyk color to be made darker |
|
inlinestatic |
Returns DeviceCmyk color which is lighter than given one
cmykColor | the DeviceCmyk color to be made lighter |
|
static |
Predefined black DeviceCmyk color
|
static |
Predefined cyan DeviceCmyk color
|
static |
Predefined magenta DeviceCmyk color
|
static |
Predefined yellow DeviceCmyk color