Package com.aspose.barcode.generation
Class CMYKColor
java.lang.Object
com.aspose.barcode.generation.CMYKColor
Class for CMYK color. Null means CMYK is not used, default RGB color is in use.
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionCMYKColor(int c, int m, int y, int k) Initializes a new instance of theCMYKColorclass from CMYK values. -
Method Summary
-
Field Details
-
C
public float C -
M
public float M -
Y
public float Y -
K
public float K
-
-
Constructor Details
-
CMYKColor
public CMYKColor(int c, int m, int y, int k) Initializes a new instance of the
CMYKColorclass from CMYK values. CMYK values are 0-100.- Parameters:
c- Cyan value [0, 100]m- Magenta value [0, 100]y- Yellow value [0, 100]k- Black value [0, 100]
-
-
Method Details