Table of Contents

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 int

The cyan component value in percent.

magenta int

The magenta component value in percent.

yellow int

The yellow component value in percent.

key int

The 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 PdfColorProfile

The ICC color profile for CMYK color space.

cyan int

The cyan component value in percent.

magenta int

The magenta component value in percent.

yellow int

The yellow component value in percent.

key int

The key component value in percent.

Remarks

Each component value must be a number between 0 (zero concentration) and 100 (maximum concentration).