BoltBait Posted November 21, 2014 Share Posted November 21, 2014 I had an idea for making a plugin that would color my gray hair... I'll just leave this code here in case I ever get bored again and try to fix it. (Also, someone smarter than me may have an idea to make it work.) Needs work... // Author: BoltBait #region UICode #endregion // Setup for using Difference blend op private BinaryPixelOp differenceOp = LayerBlendModeUtil.CreateCompositionOp(LayerBlendMode.Difference); private BinaryPixelOp darkenOp = LayerBlendModeUtil.CreateCompositionOp(LayerBlendMode.Darken); // Here is the main render loop function unsafe void Render(Surface dst, Surface src, Rectangle rect) { for (int y = rect.Top; y < rect.Bottom; y++) { if (IsCancelRequested) return; ColorBgra* srcPtr = src.GetPointAddressUnchecked(rect.Left, y); ColorBgra* dstPtr = dst.GetPointAddressUnchecked(rect.Left, y); for (int x = rect.Left; x < rect.Right; x++) { ColorBgra CurrentPixel = *srcPtr; ColorBgra SourcePixel = *srcPtr; HsvColor hsv = HsvColor.FromColor(CurrentPixel.ToColor()); int H = hsv.Hue; int S = hsv.Saturation; int V = hsv.Value; byte A = CurrentPixel.A; V = 100-V; CurrentPixel = ColorBgra.FromColor(new HsvColor(H,S,V).ToColor()); CurrentPixel.A = A; CurrentPixel = differenceOp.Apply(*srcPtr, CurrentPixel); CurrentPixel = darkenOp.Apply(CurrentPixel,SourcePixel); *dstPtr = CurrentPixel; srcPtr++; dstPtr++; } } } "Just for Men" is easier... 2 Quote Click to play: Download: BoltBait's Plugin Pack | CodeLab | and how about a Computer Dominos Game Link to comment Share on other sites More sharing options...
Pixey Posted November 22, 2014 Share Posted November 22, 2014 No need for this Plugin as I prefer the gray Quote How I made Jennifer & Halle in Paint.net My Gallery | My Deviant Art "Rescuing one animal may not change the world, but for that animal their world is changed forever!" anon. Link to comment Share on other sites More sharing options...
RFX Posted November 22, 2014 Share Posted November 22, 2014 "Just for Men" is easier... ...or you could buy a motorcycle as those make everyone look instantly cooler! (note: made with love, please don't ban me lol.) 1 Quote Link to comment Share on other sites More sharing options...
BoltBait Posted November 23, 2014 Author Share Posted November 23, 2014 I used to own a motorcycle. Sold it when I got married. I miss that bike. Quote Click to play: Download: BoltBait's Plugin Pack | CodeLab | and how about a Computer Dominos Game Link to comment Share on other sites More sharing options...
RFX Posted November 23, 2014 Share Posted November 23, 2014 Awww, aye I hear the Can Am 3-wheelers are pretty good and safe as well! Perhaps one of those would be a good substitute. I was thinking about this plug in, you could also probably create a chrome reflective effect as opposed to using curves+ plug-in with a few other steps which always takes time to do. From your thumbnail images, it may be able to do it all at once. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.