Skip to content

Commit

Permalink
Reference LCh colorspace consistently
Browse files Browse the repository at this point in the history
  • Loading branch information
kipcole9 committed Jul 20, 2024
1 parent 2286e99 commit 065f77f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions lib/image.ex
Original file line number Diff line number Diff line change
Expand Up @@ -7735,8 +7735,8 @@ defmodule Image do
Apply a percentage adjustment to an image's brightness
(luminance).
The image is converted to the `lch` color space, multiplies the
luminance band by the provided float percentage and converts
The image is converted to the [LCh color space](https://en.wikipedia.org/wiki/HCL_color_space),
multiplies the luminance band by the provided float percentage and converts
the image back to its original color space.
### Arguments
Expand Down Expand Up @@ -7776,8 +7776,8 @@ defmodule Image do
Apply a percentage adjustment to an image's brightness
(luminance) or raises an exception.
The image is converted to the `lch` color space, multiplies the
luminance band by the provided float percentage and converts
The image is converted to the [LCh color space](https://en.wikipedia.org/wiki/HCL_color_space),
multiplies the luminance band by the provided float percentage and converts
the image back to its original color space.
### Arguments
Expand Down Expand Up @@ -8544,8 +8544,8 @@ defmodule Image do
Apply an adjustment to an image's saturation
(chroma).
The image is converted to the `lch` color space, multiplies the
chroma band by the provided float and converts
The image is converted to the [LCh color space](https://en.wikipedia.org/wiki/HCL_color_space),
multiplies the chroma band by the provided float and converts
the image back to its original color space.
### Arguments
Expand Down Expand Up @@ -8578,8 +8578,8 @@ defmodule Image do
Apply an adjustment to an image's saturation
(chroma) or raises an exception.
The image is converted to the `lch` color space, multiplies the
chroma band by the provided float and converts
The image is converted to the [LCh color space](https://en.wikipedia.org/wiki/HCL_color_space),
multiplies the chroma band by the provided float and converts
the image back to its original color space.
### Arguments
Expand Down

0 comments on commit 065f77f

Please sign in to comment.