Color and Tone Adjustments

    From The Document Foundation Wiki


    This article describes the internal calculations for color and tone adjustments.

    General

    To adjust colors, brightness and contrast of a raster image or set a gamma value use the settings in the color dialog. It opens, when an image is selected.

    Color and Tone Adjustment Dialog.png

    These settings are written to the file, but the image itself is not altered. Therefore you can use these filters not only for embedded images but for linked ones as well.

    The colors are defined in a 8-bit RGB color space. The color of a pixel is a vector with a red component, a green component, and a blue component, each with integer values in the interval [0‥255].

    A filter can be described by a function. Input parameter is the original color or the output of another filter. The resulting output is the rendered color or the input to another filter. You can illustrate the relationship between input color and output color by a function graph in a coordinate system with the input color on the x-axis and the output color on the y-axis. If no filter is applied, the function graph is a straight line in 45 degree to the x-axis.

    Color and Tone Adjustment without Filter.png

    Contrast

    The contrast is a signed percent value in the interval [−100%‥100%]. A positive value increases the contrast of the rendered image, a negative value decreases the contrast. This filter is applied to all color channels at the same time.

    The filter function is linear. Its slope is calculated by

    [math]\displaystyle{ slope = \begin{cases} \frac {128}{128-contrast \cdot 127}, & \mbox{if } contrast \ge 0 \\ \frac {128+contrast \cdot 127} {128}, & \mbox{if } contrast \lt 0 \end{cases} }[/math]

    contrast adjustment positive Color and Tone Adjustment Positive Contrast.png

    contrast adjustment negative Color and Tone Adjustment Negative Contrast.png

    The value 128 is not affected by this filter. So the resulting function has the term

    [math]\displaystyle{ output = slope \cdot (input - 128) + 128 }[/math]

    Luminance

    The luminance is a signed percent value in the interval [−100%‥100%]. A positive value increases the brightness of the rendered image, a negative value decreases the brightness. It is applied to all color channels at the same time. The function graph is simply shifted up or down. [math]\displaystyle{ output = input + luminance \cdot 255 }[/math].

    luminance negative Color and Tone Adjustment Negative Luminance.png

    Color adjustment

    The color adjustment is similar to the luminance, but has for each color channel a separate value. A positive value increases the intensity of the that color, a negative value decreases it. The color adjustment can be used for a white balance of the rendered image.

    Resulting Filter

    Color adjustment, contrast and luminance settings are applied at the same time. Let blueIn be the blue component of a pixel in the original image, then the blue component of the rendered pixel can be calculated as below. The green and red components are calculated analogous.

    [math]\displaystyle{ raw = slope \cdot (blueIn-128)+128+bluePercent \cdot 255 + luminance \cdot 255 }[/math]

    The rendered color blueOut is rounded to integer and constrained to the interval [0‥255].

    [math]\displaystyle{ blueOut = \begin{cases} 0, & \mbox{if }raw \lt 0 \\ round(raw), & \mbox{if }0 \le raw \le 255 \\ 255, & \mbox{if }255 \lt raw \end{cases} }[/math]

    This filter is not applied to an alpha-channel, which might be present.

    The adjustments here are applied before changes, which are induced by the gamma value.

    Gamma

    The gamma filter provides a non-linear filter, which mainly affects the contrast of the mid-tones. It can be used for a manually gamma correction for special output devices or environments. This filter is applied to all color channels at the same time.

    The value gamma is a floating point number. It is stored in the file as percent, e.g. the value 2.5 in the UI is stored as 250%. The UI constrains the value to 0.1 ≤ gamma ≤ 10. Internally values outside the interval ]0‥10] are forced to 1.

    [math]\displaystyle{ InverseGamma = \begin{cases} 1.0, & \mbox{if }gamma \le 0.0 \\ \frac {1}{gamma}, & \mbox{if }0.0\lt gamma \le 10.0 \\ 1.0, & \mbox{if }10.0\lt gamma \end{cases} }[/math]

    Let blueIn be the blue component of a pixel in the image after applied filter for colors, luminance and contrast as described above. Then the blue component of the rendered pixel can be calculated as below, the green and red components are calculated analogous.

    [math]\displaystyle{ blueOut = round \left ( \left ( \frac{blueIn}{255} \right)^{InverseGamma} \cdot 255 \right ) }[/math]

    Because 0InverseGamma=0 and 1InverseGamma=1, very dark colors and very bright colors are less affected than mid-tones.

    Gamma = 0.5 Color and Tone Adjustment Gamma 0 5 Gray Scale.png
    Gamma = 1 Color and Tone Adjustment Gamma 1 Gray Scale.png
    Gamma = 2 Color and Tone Adjustment Gamma 2 Gray Scale.png

    Gamma = 2 Color and Tone Adjustment Gamma 2 Function.png

    This filter is not applied to an alpha-channel, if any.