Defines the colour models plotting objects:
Returns the RGB colourspace with given name.
| Parameters: | colourspace (Unicode) – RGB Colourspace name. |
|---|---|
| Returns: | RGB Colourspace. |
| Return type: | RGB_Colourspace |
| Raises: | KeyError – If the given colourspace is not found in the factory colourspaces. |
Plots given colourspaces in CIE 1931 Chromaticity Diagram.
| Parameters: |
|
|---|---|
| Returns: | Definition success. |
| Return type: | bool |
Examples
>>> csps = ['sRGB', 'ACES RGB']
>>> colourspaces_CIE_1931_chromaticity_diagram_plot(csps)
True
Plots given colourspace transfer function.
| Parameters: |
|
|---|---|
| Returns: | Definition success. |
| Return type: | bool |
Examples
>>> single_transfer_function_plot()
True
Plots given colourspaces transfer functions.
| Parameters: |
|
|---|---|
| Returns: | Definition success. |
| Return type: | bool |
Examples
>>> multi_transfer_function_plot(['sRGB', 'Rec. 709'])
True