How do you use Filters

How do you use the Filters

1 Like

@set hsl Hue Saturation Lightness colorization with blendMode TYPE to OPACITY%

  • The first 3 values (“Hue# Saturation# Lightness#”) are for Hue, Saturation, and Lightness. These mirror Photoshop’s hue, saturation, and lightness parameters:
    • Hue takes a number between -180 and 180
    • Saturation takes a number between -100 and 100
    • Lightness takes a number between -10 and 100
  • Colorization refers to whether you want to turn colorization ON or OFF.
    • The options here are “colorize” or &ldquo*;no_colorize”.
    • This is optional code to include. It will default to no_colorize if not included.
  • “with blendMode TYPE” can be used to change how it blends with the existing image.
    • The TYPE must be one of the following: NORMAL, OVERLAY, ADD, MULTIPLY
    • This is optional code to include. It will default to NORMAL.
  • “to OPACITY%” specifies how strong you’d like this filter to be:
    • OPACITY takes a value between 0 and 100.

Check out: Guides → Special Effects → Adding & Customizing Filters

3 Likes