Click or drag to resize

AxoColorFromAcmyk Method

Provides a quick and dirty conversion from the CMYK color model to an AxoColor. No color conversion profile is used here!

Namespace: Altaxo.Drawing
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static AxoColor FromAcmyk(
	float alpha,
	float c,
	float y,
	float m,
	float k
)

Parameters

alpha  Single
The alpha value in the range [0, 1].
c  Single
The calpha value in the range [0, 1].
y  Single
The yalpha value in the range [0, 1].
m  Single
The malpha value in the range [0, 1].
k  Single
The kalpha value in the range [0, 1].

Return Value

AxoColor

[Missing <returns> documentation for "M:Altaxo.Drawing.AxoColor.FromAcmyk(System.Single,System.Single,System.Single,System.Single,System.Single)"]

See Also