1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 05:37:34 +00:00

PixelPaint: Add Hue/Saturation filter

This filter mimics the functionality from Photoshop and other image
editors, allowing you to adjust the hue, saturation, and lightness of
an image. I always found this a very handy feature :^)
This commit is contained in:
MacDue 2022-10-09 16:31:37 +01:00 committed by Sam Atkins
parent 71fb1ed226
commit fef19aa589
4 changed files with 91 additions and 0 deletions

View file

@ -26,6 +26,7 @@ set(SOURCES
Filters/BoxBlur5.cpp
Filters/Filter.cpp
Filters/FastBoxBlur.cpp
Filters/HueAndSaturation.cpp
Filters/GaussBlur3.cpp
Filters/GaussBlur5.cpp
Filters/Grayscale.cpp