Skip to content

ImageFilterHueSaturation

ImageFilterHueSaturation#

(Hue Saturation)

No corresponding User page.

Description#

Adjust the hue/saturation of the image.

Public Attributes#

Type Name Visual Hint Description
double hue VISUAL_HINT_PERCENTAGE Set hue.
double saturation VISUAL_HINT_PERCENTAGE Set saturation.

Inherited Public Attributes#

Type Name Visual Hint Description
bool channel_r VISUAL_HINT_DEFAULT Whether this filter affects the red channel or not.
bool channel_g VISUAL_HINT_DEFAULT Whether this filter affects the green channel or not.
bool channel_b VISUAL_HINT_DEFAULT Whether this filter affects the blue channel or not.
bool channel_a VISUAL_HINT_DEFAULT Whether this filter affects the alpha channel or not.
bool channel_z VISUAL_HINT_DEFAULT Whether this filter affects the Z channel or not.

CID#

class "ImageFilterHueSaturation" "PixelFilter" {
    #version 0.9
    icon "../icons/object_icons/filter_hsv.iconrc"
    category "ImageFilter"
    doc "Adjust the hue/saturation of the image."
    percentage "hue" {
        doc "Set hue."
        animatable yes
        slider yes
        numeric_range yes -1 1
        ui_range yes -1 1
        value 0.0
    }
    percentage "saturation" {
        doc "Set saturation."
        animatable yes
        slider yes
        numeric_range yes -1 1
        ui_range yes -1 1
        value 0.0
    }
}