Convert colors with the color profiles provided by the OpenColorIO (OCIO) configuration of a scene.
Cinema 4D implements color management primarily with International Color Consortium (ICC) color profiles and the OpenColorIO (OCIO) standard. OCIO implements a color management pipeline for digital content creation applications to decouple the color representation requirements of color computations from the requirements of displaying colors on hardware-devices. This allows for a lossless transfer of color data between different applications while giving artists always the ability to view their artwork with the colors the final consumer will see. OCIO achieves this by defining color spaces by purpose so that they can be applied selectively to color data. The three abstract color spaces defined by the OCIO standard are:
Each application in a color management pipeline assigns a color profile to each of these abstract color spaces to suite its specific needs. Applications communicate the possible choices for each space with the help of OCIO configuration files, allowing for a persistent color previewing experience along the pipeline without having to bake hardware dependent information into outputs (Fig. I).
Cinema 4D currently does provide only shallow public access to its OCIO API, with the consequence that high level OCIO concepts such as an OCIO configuration or an OCIO processor are not represented by dedicated types in the public API. There are however multiple entry points which provide access to the most important functionalities of OCIO.
OCIO is bound intrinsically to a scene in form of BaseDocument, a scene can either have OCIO enabled or not, and also stores the currently active color profiles for the principal OCIO spaces. These settings are expressed as the parameters:
These parameters can be read and written with BaseDocument::GetParameter and SetParameter. Due to the fact that the values of OCIO color spaces and transforms depend on the loaded OCIO configuration, the values written to the parameters must be retrieved with the following functions:
Additionally, the following methods exist:
To convert colors between OCIO color space representations, the type OcioConverter must be used, providing the methods:
The transform paths are defined by the enumeration COLORSPACETRANSFORMATION. Note that a path can contain multiple transforms, as the path is always carried out in a sensible manner, e.g., OCIO_RENDERING_TO_VIEW will contain the display transform, as the OCIO transform chain is render->display->view
. The available paths are:
Articles | Color Management Manual | Convert color data between color spaces and color formats provided by the maxon API or loaded from disk. |
BaseDocument Manual | Access the data structures of a Cinema 4D scene file. | |
Important API Entities | BaseDocument | Represents a scene file and provides access to its OCIO settings and color spaces. |
OcioConverter | Converts colors along OCIO conversion paths associated with a scene. | |
SceneColorConverter | Converts colors contained in scenes or elements of scenes to a new OCIO Render space. | |
BaseBitmap | Represents a bitmap which can be modified, read and written from disk, and displayed in GUIs. | |
SDK Plugins | OCIO Plugin | Contains the examples shown in this manual. |
Examples | Color Convert Scenes | Convert all colors contained in a document or contained in a set of elements in a document to a new OCIO Render space. |
Copy Color Management Settings | Copy all color management settings from one document to another. | |
Read and Write OCIO Settings | Read and write the OCIO color management settings stored in a document. | |
Convert Colors | Convert colors along OCIO conversion paths defined by the OCIO color spaces associated with a document. | |
Get and Set Color Parameters | Read and write color parameters in an OCIO document either in the native Render space of the document or other spaces. | |
Manage Bitmap OCIO Color Profiles | Read and write the OCIO color spaces associated with BaseBitmap instances to change or nullify parts of an OCIO conversion path for them. |
The examples shown here are all part of the OCIO Plugin in the SDK. Once the SDK has been compiled and installed, the plugin can be found under the menu entry Extensions\Example.image\C++ SDK: OCIO Examples
.
Convert all colors contained in a document or contained in a set of elements in a document to a new OCIO Render space.
Copy all color management settings from one document to another.
This does not entail any scene element color space conversions, one must instead use SceneColorConverter as demonstrated in the example Color Convert Scenes .
Read and write the OCIO color management settings stored in a document.
Convert colors along OCIO conversion paths defined by the OCIO color spaces associated with a document.
Read and write color parameters in an OCIO document either in the native Render space of the document or other spaces.
Read and write the OCIO color spaces associated with BaseBitmap instances to change or nullify parts of an OCIO conversion path for them.
This makes it for example possible to disable the Display and View transform for a singular bitmap when displayed in the Picture Viewer.