The process of mixing things together. Computer graphics uses blending concept to achieve transparency with image.
0
votes
0answers
21 views
DirectFB blending issue
Here is the blending equation I am trying to achieve. From what I have seen, I don't think it is possible, but the DirectFB docs don't cover this area very clearly, so I may be missing something. ...
0
votes
0answers
20 views
Problems drawing custom CCNode to CCTextureRender as mask
So, I'm doing a Cocos2d-x game. I'm trying to mask different parts of an image with a runtime generated mask. The mask is defined by a series of points generated by Bezier Curves. This is the entire ...
0
votes
0answers
27 views
How to correctly extract highlights and shadows from a grayscale image
I am drawing some buttons on the screen. Each with a different color, but the same shape, designed in Photoshop with all sort of reflections and shines.
I want to use a single bitmap of the shape and ...
2
votes
2answers
77 views
opengl: nonlinear additive color blending
I'm writing an PyOpenGL-based UI for manually aligning images. I display my two images as textured quads, the moving image on top of the static reference. The moving image is shown in red with varying ...
0
votes
0answers
23 views
overlay blending of two images on ipod gives a jittery result image
I am changing color of an image according to user( user selects the color from a list of colors), for that I am using overlay blending mode of two images to change the color. I have first image of a ...
1
vote
1answer
61 views
What kind of colors blend to make the forecolor distinct from the backcolor? [duplicate]
Suppose I know the backcolor and I want to change the forecolor accordingly to make the text distinct from the background. For example, if the current text color (forecolor) is RED, for some change of ...
0
votes
2answers
88 views
OpenGL ES 2.0: Safe to assume that Blending is relatively cheap on Mobile Devices?
All over the place, I read what a serious performance hit Blending was, until I came across a comment that it was not so expensive on iOS devices due to their architecture.
Now, the wonderfully ...
0
votes
1answer
92 views
Modifying glBlendColor from within a vertex/fragment shader
I'm using a blending function to colorize glyphs obtained from the freetype library when using subpixel rendering (LCD, glyph bitmap format is RGB (not alpha)):
I upload the texture in RGB format to ...
0
votes
1answer
73 views
blend colors in polygon
I have a polygon which consist of segments of different colors (red and green on sample image).
And for each pixel in polygon (grey area) I need to calculate coefficients to obtain the color of ...
3
votes
1answer
56 views
Duplicate iOS kCGBlendModeSoftLight blending
I'm trying to duplicate the CoreGraphics kCBBlendModeSoftLight blending using shaders. (I've already implemented a few other CG blend modes already)
The problem is that while there a lot if ...
1
vote
1answer
57 views
Using GL_SRC1_COLOR in glBlendFunc()
I am using glBindFragDataLocationIndexed() and writing two colors in fragment shader. Following is my code :
glBindFragDataLocationIndexed(shader_data.psId, 0, 0, "Frag_Out_Color0");
...
2
votes
1answer
68 views
Arbitrary blending of semi-transparent PNG, retaining alpha on iOS
I want to be able to overlay a semi-transparent PNG with a single colour using an arbitrary blending and keep the alpha.
I'm aware of this solution:
How to tint a transparent PNG image in iPhone?
...
-1
votes
1answer
30 views
Blending a picture with White
Hi I have a project where I need to blend white and black with a picture. I have the black code working but I can't seem to get the white to work. Can someone please advise me on what I am doing ...
-1
votes
2answers
77 views
Method is undefined for this type ERROR [closed]
Hi I keep getting this error: Error: The method BlendRectWithWhite(int, int, int, int, int) is undefined for the type BlendablePic
here is my coding for both, I am confused about what to do as I've ...
2
votes
1answer
86 views
MATLAB: 2-Band Blending on the following stitching
Let us say I got two images and stitch them together.
Now, how could we use a 2-Band Blending on this?
Or other simple blending approach, I got limited time. Any help would be appreciated.
What ...
4
votes
1answer
70 views
cocos2d. Correct blending?
I modified standard example "Hello World":
CCSprite *sprite = [CCSprite spriteWithFile:@"Untitled-1.png"];
CGSize winSize = [CCDirector sharedDirector].winSize;
...
4
votes
1answer
108 views
How do I intersect two smooth shapes in OpenGL?
I've successfully drawn two smooth shapes in OpenGL using a routine that generates a triangle strip whose outermost edge line has all its vertices at alpha 0. Now I want to intersect them, but I ...
2
votes
1answer
121 views
Blend picture with the color white
public class BlendablePicture extends Picture {
public BlendablePicture(String filename) {
super(filename);
}
public void blendRectWithWhite(int xMin, int yMin, int xMax, int ...
0
votes
1answer
86 views
iOS Find Color at Point Between Two Colors
I have a problem: I need to be able to take two colors and make a 'virtual gradient' out of them. I then need to be able to find the color at any point on this line. My current approach is this:
if ...
1
vote
2answers
152 views
Creating light spot effect on a bitmap tiled poker/billard table - with test code and screenshots
While my simplified test case (pasted below) is in Flex, my question is actually an ActionScript 3 one.
I have a small card game, where I currently draw the background as a not very exciting looking ...
0
votes
1answer
34 views
Flash blending movie clip with HTML
Is there a way of having a Flash movie blend into the HTML below it. Like having a flash file with blend mode "Darken" be applied to the content below?
I had a quick look at CSS blend-mode but either ...
0
votes
3answers
84 views
Blending with Direct3D SpriteBatch
I'm trying to achieve a simple effect: drawing an image on the screen with a transparent background. I'm using SpriteBatches to do this.
Here is my code for creating the blend state:
...
0
votes
1answer
160 views
Thoughts on opengl es multitexture shader with 8 texture units
Below is a fragment shader that is performing poorly. Removing the conditional branches doesnt seem to improve performance. With just 150 polys I get 10fps on Kindle Fire and 20fps on Galaxy S3. ...
0
votes
1answer
218 views
multitexture additive blending in opengl
I want an effect that a metal surface that has a strong sun reflection virtually turns white in the light. It worked pretty well with two pass rendering and additive blending the second pass (with a ...
1
vote
1answer
241 views
iOs OpenGL ES 2.0 blending with shader on device and on simulator
Here is the fragment of fragment shader code (I need make blending in the shader):
float a = texture2D(tMask, texCoords).x; // opacity of current pixel from mask texture.
if ( a == 0.0)
discard;
...
0
votes
1answer
89 views
GL Func Subtract Cocos2d
Does anyone know how to change the blending mode for a specific sprite in Cocos2d 2.x to GL_FUNC_SUBTRACT?
Ive tried a few things, but basically I'm trying to create a layer mask using a white (or ...
0
votes
2answers
144 views
Funky OpenGL cubes
Aha! It seems my problem was that my zNear value given to gluPerspective had to be greater than 0, and I had to enable the depth buffer to get it working. Ive updated the code below to be working.
...
-2
votes
1answer
295 views
Kinetic js photo image with blurred/transparent edges
I'm building a photo-framing application using Kinetic JS (which is great, by the way).
I would like the photo, which starts life as a JPEG, to have blurred edges so it is blended in nicely to its ...
-1
votes
1answer
242 views
How does photoshop blend two images together? Part 2: Color/Hue/Saturation filters and Fast transform from RGB to LCH transform
How to apply Color/hue/saturation blends as Photoshop? I know, that GIMP works with HSV/HSL color models, but photoshop - with CIE LCH. hue/color/saturation blends has differences for the HSV/HSL and ...
0
votes
0answers
128 views
XNA Additive particles blending on background
I got a problem with my particle engine that i'm trying to implement in a game i'm currently coding. It looks fine on a black background but I forgot the particles would blend with the background if I ...
1
vote
1answer
136 views
How do I use my own blending formula in SVG?
I'm using SVG.
The standard blend modes: screen, lighten, overlay, difference. etc...... are not what I need.
I've designed a formula for another blend mode i need to use that isn't any of the ...
0
votes
0answers
72 views
What blend equation is System.Drawing.SolidBrush using?
I have some GDI code that's drawing semi-transparent triangles using System.Drawing.SolidBrush. I'm trying to reimplement the code using a proper 3D rendering API (OpenGL/Direct3D11), but I'm not sure ...
7
votes
3answers
315 views
Advanced color blending with GDI+
Using GDI+ with Windows Forms, I want to be able to draw with a pen and blend color based on the destination pixel color.
For example, if I draw a line and it passes over black pixels, I want it to ...
0
votes
1answer
133 views
OpenGL ES 1.1 - aquarium's realistic rendering
I've got some meshes that try to resemble an aquarium. I can move the point of view or camera that has a light attached to it. Only the front glass is fully transparent, it is suposed to be the screen ...
0
votes
1answer
227 views
three.js blend color with map
I have a mesh that has map and color. I want to set the transparent part in the map to be the color. I tried this but only map is render.
var map = THREE.ImageUtils.loadTexture(url);
var material = ...
0
votes
0answers
70 views
OpenGl blending two texture
During the mixing phase between two textures, apply the blend from source texture to texture dest.
Now this takes place during the draw. If I then delete the source texture to the next draw the ...
0
votes
1answer
100 views
Disable blending of UIView with its superview
I am creating say a rectangle in coregraphics - using CGContext functions in the - (void)drawRect:(CGRect)rect method of UIView and adding it to a superview. When i change the background of the ...
0
votes
0answers
200 views
CCLabelTTF contains color from background
I am trying to use CCLabelTTF in my app and I am facing a problem that labels look "dirty". I am using UIKit view for background, so my view hierarchy looks as follows:
view (controller's view)
-- ...
0
votes
1answer
108 views
One rectangle (two connected quads) with two textures - error with their common border
I have a rectangle consists of two quads (8 vertexes, I use indexed triangles):
------+------
| \ | \ |
| \ | \ |
| \ | \ |
______+______
I have also two textures for it. I bind both of ...
0
votes
2answers
61 views
Color blending - Darken mode
I am trying to simulate the Adobe Photoshop's blending mode - Darken.
I understand the basic Darken principle : Darken(a,b) = min(a,b). E.g.:
Darken( (.2, .3, .8), (.5, .1, .4) ) = (.2, .1, .4) // ...
1
vote
0answers
298 views
OpenGL Blending (Invert texture color before blending)
I'm making a fast text rendering for an UI system based on OpenGL wich uses subpixel rendering, White text over black background works well with "normal" blending, but black text over white background ...
0
votes
1answer
60 views
Can I add watermark to rending of OpenGL ES on iOS
I need add invisible watermark for user to render data of OpenGL ES 2.0. And if user will do screenshot by home+lock, then watermark will be slightly visible.
How I can do it? Or it's not impossible? ...
3
votes
1answer
277 views
SpriteBatch.setBlendFunction() gives no effect on Android
I'm developing a game for Android with libGDX framework.
I have three images - background, foreground and a mask. Here is the rendering code to make part of background image visible on foreground ...
2
votes
1answer
246 views
SVG blending mode bug in Chrome
Recently I'm working over a project, where I need to use SVG and it's blending mode filter.
Base element is an background image and then there are some shapes (mostly paths with solid fill).
The ...
2
votes
1answer
113 views
How to perform color blending in touch portion of the image in android
I am trying to change color of the image in touch portion. I have tried below two approaches,
1)
mPaint = new Paint();
mPaint.setColor(Color.RED);
mPaint.setStyle( Paint.Style.STROKE );
...
0
votes
1answer
130 views
html5 canvas image compositing
Is there a way to overlay an image (jpeg) while keying out a certain color, like black? So that the all the pure black pixels in the image are transparent? Much like the "screen" blending mode in ...
1
vote
0answers
167 views
{OpenGL 3.3+} GL_BLEND doesn't work
Yesterday i start to writting my 2D Engine in C++ + GLFW + OpenGL 3.3 + GL3W + DevIL.
But i have really big problem :/ glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); doesn't work :/ i've tried ...
0
votes
0answers
50 views
Multiple glBlendingFunc
This is my code:
-(void)drawFunc1 {
glEnable(GL_BLEND);
glBlendFunc(GL_ONE, GL_ZERO);
//some code for drawing
glBlendFuncSeparate(GL_ZERO, GL_ONE, GL_DST_COLOR, GL_ZERO);
//some code for drawing
...
0
votes
1answer
304 views
Blending Function on OpenGL ES 1.0 (Android)
I'm using OpenGL ES 1.0 for Android.
I've a shape composed by 2 triangles (quad) like a play card.
The texture used for this play card have smooth corners (transparent)
When i draw the shape... ...
2
votes
1answer
1k views
DirectX 11 Alpha Blending Not Working
Okay, so I have been trying to get Alpha Blending to work in my 3D application but it just doesn't want to happen. I am drawing 2d images with an orthogonal projection at the very end of the rendering ...




