diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-02-21 03:32:28 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-02-21 03:32:28 +0100 |
commit | d7b2adc7ee55c37de215a886aaa757a62bad6068 (patch) | |
tree | 909144ba21daa7741a06cfcbb1ca0a125a277e08 /info/blueshift.texinfo | |
parent | rename negative to invert (mirror y) and add negative that reverses (mirror x) (diff) | |
download | blueshift-d7b2adc7ee55c37de215a886aaa757a62bad6068.tar.gz blueshift-d7b2adc7ee55c37de215a886aaa757a62bad6068.tar.bz2 blueshift-d7b2adc7ee55c37de215a886aaa757a62bad6068.tar.xz |
comment about constrast function
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'info/blueshift.texinfo')
-rw-r--r-- | info/blueshift.texinfo | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/info/blueshift.texinfo b/info/blueshift.texinfo index 0360956..8f7e92a 100644 --- a/info/blueshift.texinfo +++ b/info/blueshift.texinfo @@ -277,18 +277,24 @@ manipulate these curves: @table @code @item rgb_contrast(rgb) -Adjusts the contrast to @code{rgb}. +Adjusts the contrast to @code{rgb}. This +function assumes the black is 0, and white +is 1, so you should apply this before brightness. @item rgb_contrast(r, g, b) Adjusts the contrast to @code{r}, @code{g} and @code{b} on the red, green and blue curves, -respectively. +respectively. This function assumes the black is +0, and white is 1, so you should apply this +before brightness. @item cie_contrast(y) Adjusts the contrast to @code{y}. The function calculate the values by using the CIE xyY colour space instead of the sRGB -colour space. +colour space. This function assumes the black +is 0, and white is 1, so you should apply +this before brightness. @item rgb_brightness(rgb) Adjusts the brightness to @code{rgb}. |