XpsDocument.CreateColor

CreateColor(Color)

Erstellt eine neue Farbe.

public XpsColor CreateColor(Color color)
ParameterTypBeschreibung
colorColorEine native Farbinstanz für RGB-Farbe.

Rückgabewert

Neue Farbe.

Siehe auch


CreateColor(int, int, int, int)

Erstellt eine neue Farbe im sRGB-Farbraum.

public XpsColor CreateColor(int a, int r, int g, int b)
ParameterTypBeschreibung
aInt32Die Alpha-Farbkomponente.
rInt32Die rote Farbkomponente.
gInt32Die grüne Farbkomponente.
bInt32Die blaue Farbkomponente.

Rückgabewert

Neue Farbe.

Siehe auch


CreateColor(int, int, int)

Erstellt eine neue Farbe im sRGB-Farbraum.

public XpsColor CreateColor(int r, int g, int b)
ParameterTypBeschreibung
rInt32Die rote Farbkomponente.
gInt32Die grüne Farbkomponente.
bInt32Die blaue Farbkomponente.

Rückgabewert

Neue Farbe.

Siehe auch


CreateColor(float, float, float, float)

Erstellt eine neue Farbe im scRGB-Farbraum.

public XpsColor CreateColor(float a, float r, float g, float b)
ParameterTypBeschreibung
aSingleDie Alpha-Farbkomponente.
rSingleDie rote Farbkomponente.
gSingleDie grüne Farbkomponente.
bSingleDie blaue Farbkomponente.

Rückgabewert

Neue Farbe.

Siehe auch


CreateColor(float, float, float)

Erstellt eine neue Farbe im scRGB-Farbraum.

public XpsColor CreateColor(float r, float g, float b)
ParameterTypBeschreibung
rSingleDie rote Farbkomponente.
gSingleDie grüne Farbkomponente.
bSingleDie blaue Farbkomponente.

Rückgabewert

Neue Farbe.

Siehe auch


CreateColor(string, params float[])

Erstellt eine neue Farbe im ICC-basierten Farbraum.

public XpsColor CreateColor(string path, params float[] components)
ParameterTypBeschreibung
pathStringDer Pfad zum ICC-Profil.
componentsSingle[]Farbkomponenten.

Rückgabewert

Neue Farbe.

Siehe auch


CreateColor(XpsIccProfile, params float[])

Erstellt eine neue Farbe im ICC-basierten Farbraum.

public XpsColor CreateColor(XpsIccProfile iccProfile, params float[] components)
ParameterTypBeschreibung
iccProfileXpsIccProfileDie ICC-Profilressource.
componentsSingle[]Farbkomponenten.

Rückgabewert

Neue Farbe.

Siehe auch