-1
votes
1answer
85 views

Does Photoshop always blends transparen images with white color?

It looks like merged-image-data in PSD files contains RGB data which is blended with white color (based on transparency). Is that correct for all versions of Photoshop/PSD? Can I disable it or control ...
1
vote
3answers
306 views

Please explain this color blending mode formula so I can replicate it in PHP/ImageMagick

I've been trying to use ImageMagick to replicate Photoshops Colour Blend Mode. I found the following formulas in an online guide but I don't know what they mean. Do I just need to swap certain ...
2
votes
1answer
401 views

Alpha Blending 2 RGBA colors in C [duplicate]

Possible Duplicate: How to do alpha blend fast? What is the fastest way to alpha blend 2 RGBA (Integer) colors? As a note, the target color where to blend is always opaque, only the second ...
1
vote
0answers
784 views

CCSprite Color Blend Similar to kCGBlendModeColor on UIImage

I am trying to overlay color on a sprite image and have questions about how to blend the color with the sprite. I've used the following updateImageTint routine to overlay color on a UIImage and the ...
2
votes
3answers
5k views

Overlay blend mode formula?

I have 2 colors: 1 dynamically set and another that's always white 0.5 alpha. I want to calculate the resulting white color as if it was drawn on top of the dynamic color using Overlay blend mode. ...
1
vote
2answers
333 views

Gaussian blend of image

I'm writing an iPhone app and need help in figuring out how to take an image and blend it into a single color. I assume I need to do a gaussian blend but am not sure if this is correct or how to do ...
6
votes
3answers
2k views

Android Blend Modes

I am looking for a way to add more advanced blend modes to my program (ones that I could define myself). How would you suggest going about this with Android? Setting pixels individually is too slow ...
1
vote
5answers
668 views

Possible to blend an image into a color? (Left, right, bottom)

Is it possible to blend the left, right and bottom sides of an image into a color? Lets say, I want the image to be blended into the color "#F0F0F0". I want the image to appear as an actual part of ...
0
votes
1answer
697 views

Color Interpolation

Okay, so I'm looking at a typical color chooser and it looks something like this: If we deal with only highly saturated colors, the blending pattern behaves like this: R 255 G 0 B 0 R 255 G 0 ...