Tagged Questions
0
votes
0answers
297 views
Blending With PathGradientBrush
So I am trying to create an outer glow for my controls, but I do not understand blending at all, and everything I have found "explaining" it does not help me understand it at all.
I am using a ...
0
votes
0answers
54 views
How do I easily get a straight list of points that I can cut and paste into code?
For example, I can draw some simple thing in Expression Design or Blend and I get the Path syntax, what I really want is just the points that make up my drawn thing so I can transpose them to a ...
6
votes
1answer
1k views
Poor results with source-over alpha blending (HTML5 canvas)
Edit: I don't necessarily need a solution to this problem--rather I'd like to understand why it's occurring. I don't see why I should be getting the odd results below...
Although this question is ...
2
votes
2answers
485 views
How to handle alpha in a manual “Overlay” blend operation?
I'm playing with some manual (walk-the-pixels) image processing, and I'm recreating the standard "overlay" blend. I'm looking at the "Photoshop math" macros here:
...
3
votes
2answers
1k views
Blend mode on a transparent and semi transparent background
In general, the "normal" blend mode equation looks like this:
D = Sa * S + D * (1.0 - Sa)
where D is destination color, Sa is source alpha and S is source color.
Now, this works fine with fully ...
3
votes
3answers
3k views
Why the leading “#FF” in hexadecimal color values?
I'm using Expression Blend 3 and writing some of the XAML by hand, specifically the color values of controls.
I have a list of RGB colors already converted to hexadecimal. I just need to insert the ...
2
votes
3answers
2k views
How to blend color of two sprites with constant alpha in DirectX?
Essentially, what I want to do (in DirectX) is to take two partially-transparent images and blend them together. This works fine with default blending, insofar as they both show up as overlapping, ...