Constructor PdfCmykColor
- Namespace
- BitMiracle.Docotic.Pdf
- Assembly
- BitMiracle.Docotic.Pdf.dll
PdfCmykColor(int, int, int, int)
Initializes a new instance of the PdfCmykColor class.
public PdfCmykColor(int cyan, int magenta, int yellow, int key)
Parameters
cyanintThe cyan component value in percent.
magentaintThe magenta component value in percent.
yellowintThe yellow component value in percent.
keyintThe key component value in percent.
Remarks
Each component value must be a number between 0 (zero concentration) and 100 (maximum concentration).
PdfCmykColor(PdfColorProfile, int, int, int, int)
Initializes a new instance of the PdfCmykColor class.
public PdfCmykColor(PdfColorProfile colorProfile, int cyan, int magenta, int yellow, int key)
Parameters
colorProfilePdfColorProfileThe ICC color profile for CMYK color space.
cyanintThe cyan component value in percent.
magentaintThe magenta component value in percent.
yellowintThe yellow component value in percent.
keyintThe key component value in percent.
Remarks
Each component value must be a number between 0 (zero concentration) and 100 (maximum concentration).