Adjusting RGB Colors of an image? #1838
Answered
by
antonfirsov
biggrizzleyguy
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
antonfirsov
Nov 19, 2021
Replies: 1 comment 2 replies
-
I'm not aware of a built-in processor for this, but I think you should be able to implement this with, Some ideas from another library with equivalent feature: |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
biggrizzleyguy
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm not aware of a built-in processor for this, but I think you should be able to implement this with,
image.Mutate(c => c.Filter(new ColorMatrix( .... )))
. You need to figure out how to create aColorMatrix
from your R,G,B slider values.Some ideas from another library with equivalent feature:
https://docs.rainmeter.net/tips/colormatrix-guide/