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
cyan
intThe cyan component value in percent.
magenta
intThe magenta component value in percent.
yellow
intThe yellow component value in percent.
key
intThe 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
colorProfile
PdfColorProfileThe ICC color profile for CMYK color space.
cyan
intThe cyan component value in percent.
magenta
intThe magenta component value in percent.
yellow
intThe yellow component value in percent.
key
intThe key component value in percent.
Remarks
Each component value must be a number between 0 (zero concentration) and 100 (maximum concentration).