Skip to main content

CalRGBColorSpace Class

A CIE-based calibrated three-component (RGB) color space.

Declaration

public class CalRGBColorSpace extends ColorSpace

Inherited Members

com.devexpress.system.JavaObject.clone()
com.devexpress.system.JavaObject.equals(java.lang.Object)
com.devexpress.system.JavaObject.hashCode()
com.devexpress.system.JavaObject.memberwiseClone()
com.devexpress.system.JavaObject.toString()
java.lang.Object.finalize()
java.lang.Object.getClass()
java.lang.Object.notify()
java.lang.Object.notifyAll()
java.lang.Object.wait()
java.lang.Object.wait(long)
java.lang.Object.wait(long,int)

Inheritance

Object
JavaObject
ColorSpace
CalRGBColorSpace

CalRGBColorSpace()

Initializes a new instance of the CalRGBColorSpace class.

Declaration

public CalRGBColorSpace()

Methods

getBlackPoint() Method

Returns the black point of the color space.

Declaration

public CIEColor getBlackPoint()

Returns

Type Description
CIEColor

The black point in CIE 1931 XYZ coordinates.

getComponentsCount() Method

Returns the number of color components in this color space.

Declaration

public int getComponentsCount()

Returns

Type Description
int

The number of color components.

getGamma() Method

Returns the gamma values for the color space.

Declaration

public ColorSpaceGamma getGamma()

Returns

Type Description
ColorSpaceGamma

An object that stores gamma values for each component.

getMatrix() Method

Returns the transformation matrix for the color space.

Declaration

public ColorSpaceMatrix getMatrix()

Returns

Type Description
ColorSpaceMatrix

An object that defines the linear interpretation of the decoded ABC components.

getWhitePoint() Method

Returns the white point of the color space.

Declaration

public CIEColor getWhitePoint()

Returns

Type Description
CIEColor

The white point in CIE 1931 XYZ coordinates.

setBlackPoint(CIEColor value) Method

Sets the black point of the color space.

Declaration

public void setBlackPoint(CIEColor value)

Parameters

Name Type Description
value CIEColor

The black point in CIE 1931 XYZ coordinates.

setGamma(ColorSpaceGamma value) Method

Sets the gamma values for the color space.

Declaration

public void setGamma(ColorSpaceGamma value)

Parameters

Name Type Description
value ColorSpaceGamma

An object that stores gamma values for each component.

setMatrix(ColorSpaceMatrix value) Method

Sets the transformation matrix for the color space.

Declaration

public void setMatrix(ColorSpaceMatrix value)

Parameters

Name Type Description
value ColorSpaceMatrix

An object that defines the linear interpretation of the decoded ABC components.

setWhitePoint(CIEColor value) Method

Sets the white point of the color space.

Declaration

public void setWhitePoint(CIEColor value)

Parameters

Name Type Description
value CIEColor

The white point in CIE 1931 XYZ coordinates.