what is the way in c# to replace a color for some parts of an image without affecting its texture?
you can see good example of the result here
Thanks
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
||||
|
|
try this:
|
|||||||||||
|
|
try to read out al the pixels and stuff them in an 3 array's (rgb) there you can set in a alogrithm to replace your colors. Have a look here: http://howtoideas.net/how-to-invert-colours-of-an-image-using-c http://www.switchonthecode.com/tutorials/csharp-tutorial-convert-a-color-image-to-grayscale |
|||||
|
|
Found the way to do that, this requires RGB<->HSL conversions (good class for HSL color can be found here) This did the job for me, thanks for all who helped |
|||
|
|