Package | Description |
---|---|
com.aspose.xps |
Modifier and Type | Class and Description |
---|---|
class |
XpsIccBasedColor
Incapsulates ICC based color.
|
class |
XpsRgbColor
Incapsulates RGB color of any color space (sRGB or scRGB).
|
Modifier and Type | Method and Description |
---|---|
XpsColor |
XpsDocument.createColor(Color color)
Creates a new color.
|
XpsColor |
XpsDocument.createColor(float r,
float g,
float b)
Creates a new color in scRGB color space.
|
XpsColor |
XpsDocument.createColor(float a,
float r,
float g,
float b)
Creates a new color in scRGB color space.
|
XpsColor |
XpsDocument.createColor(int r,
int g,
int b)
Creates a new color in sRGB color space.
|
XpsColor |
XpsDocument.createColor(int a,
int r,
int g,
int b)
Creates a new color in sRGB color space.
|
XpsColor |
XpsDocument.createColor(String path,
float... components)
Creates a new color in ICC based color space.
|
XpsColor |
XpsDocument.createColor(XpsIccProfile iccProfile,
float... components)
Creates a new color in ICC based color space.
|
XpsColor |
XpsGradientStop.getColor()
Returns the gradient stop color.
|
XpsColor |
XpsSolidColorBrush.getColor()
Returns the color for filled elements.
|
Modifier and Type | Method and Description |
---|---|
XpsGradientStop |
XpsDocument.createGradientStop(XpsColor color,
float offset)
Creates a new gradient stop.
|
XpsSolidColorBrush |
XpsDocument.createSolidColorBrush(XpsColor color)
Creates a new solid color brush.
|
void |
XpsSolidColorBrush.setColor(XpsColor value)
Sets the color for filled elements.
|