CompositingQuality Enum

Definition

Specifies the quality level to use during compositing.

public enum class CompositingQuality
public enum CompositingQuality
type CompositingQuality = 
Public Enum CompositingQuality
Inheritance
CompositingQuality

Fields

AssumeLinear 4

Assume linear values.

Default 0

Default quality.

GammaCorrected 3

Gamma correction is used.

HighQuality 2

High quality, low speed compositing.

HighSpeed 1

High speed, low quality.

Invalid -1

Invalid quality.

Remarks

When you specify that gamma correction should not be applied, the image data to be rendered (blended with the background) is assumed to be in a linear color space with a gamma value of 1.0. As a result, no gamma adjustment is applied to the image data before or after blending the image with the background.

When you specify that gamma correction should be applied, the image data to be rendered (blended with the background) is assumed to be in the sRGB color space with a gamma value of 2.2. To ensure accurate blending, the input image data is transformed into a linear (gamma = 1.0) space before the colors are blended and transformed back into sRGB (gamma = 2.2) space afterward. This mode results in a more accurate blend at the expense of additional processing time.

Applies to