Function: saturate_image DOC_MSE_VERSION: since 0.3.9 --Usage-- > saturate_image(input: image, amount: saturation amount) Saturate or desaturate an image. Saturation makes the colors brighter, desaturation makes the image more grey. To saturate use an amount between @0@ (no saturation) and @1@ (super crazy, too much saturation). To desaturate use an amount between @0@ (no desaturation) and @-1@ (convert to greyscale). --Parameters-- ! Parameter Type Description | @input@ [[type:image]] Image to (de)saturate. | @alpha@ [[type:double]] Saturation factor. --Examples-- > saturate_image("image5.png", amount: 0.5) == [[Image]] >>> saturate_image("image5.png", amount: 0.5) == "image_saturate1.png" > saturate_image("image5.png", amount: -0.5) == [[Image]] >>> saturate_image("image5.png", amount: -0.5) == "image_saturate2.png" > saturate_image("image_logo.png", amount: -1) == [[Image]] >>> saturate_image("image_logo.png", amount: -1) == "image_logo_desaturate.png"