Aurigma.GraphicsMill.Core.x86 by Aurigma Inc.

<PackageReference Include="Aurigma.GraphicsMill.Core.x86" Version="10.1.31" />

.NET API 38,316,720 bytes

 Cmyk16Color

public sealed class Cmyk16Color : Color
Represents 16-bit (extended) color value in CMYK color space.
public ushort A { get; }

Gets 16-bit alpha channel value (color opacity).

public ushort C { get; }

Gets 16-bit cyan channel value.

public ushort K { get; }

Gets 16-bit black channel value.

public ushort M { get; }

Gets 16-bit magenta channel value.

public ushort Y { get; }

Gets 16-bit yellow channel value.

public Cmyk16Color(Color color)

Initializes a new instance of the Cmyk16Color class with the specified color.

public Cmyk16Color(ushort c, ushort m, ushort y, ushort k)

Initializes a new instance of the Cmyk16Color class with the specified channel values.

public Cmyk16Color(ushort c, ushort m, ushort y, ushort k, ushort a)

Initializes a new instance of the Cmyk16Color class with the specified channel values.

public Cmyk16Color()

Initializes a new instance of the Cmyk16Color class.

public static Cmyk16Color FromPercentages(float c, float m, float y, float k)

Initializes a Cmyk16Color object by using the specified channel values in percentage.

public static Cmyk16Color FromPercentages(float c, float m, float y, float k, float a)

Initializes a Cmyk16Color object by using the specified channel values in percentage.