Replies: 3 comments 1 reply
-
RE:Color Tintusing var bv = img.Clone(x => x
.SetGraphicsOptions(o => o.ColorBlendingMode = SixLabors.ImageSharp.PixelFormats.PixelColorBlendingMode.Multiply)
.Fill(Color.BlueViolet));
bv.Save("BlueViolet.jpg"); using var bv = img.Clone(x => x
.SetGraphicsOptions(o => o.ColorBlendingMode = SixLabors.ImageSharp.PixelFormats.PixelColorBlendingMode.Multiply)
.Fill(Color.Red));
bv.Save("Red.jpg"); using var bv = img.Clone(x => x
.SetGraphicsOptions(o => o.ColorBlendingMode = SixLabors.ImageSharp.PixelFormats.PixelColorBlendingMode.Multiply)
.Fill(Color.Salmon));
bv.Save("Salmon.jpg"); |
Beta Was this translation helpful? Give feedback.
0 replies
-
Here is what i came up with that maybe useful for someone...
|
Beta Was this translation helpful? Give feedback.
0 replies
-
Now i just need to work out how do to the auto color / contrast as above |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Thought id reach out as far as I know ImageSharp does not have the following effects...
Does anyone have any info on how these may be achieved using ImageSharp?
Beta Was this translation helpful? Give feedback.
All reactions