Alpha blending is a convex combination of a translucent foreground color with a background color allowing for transparency effects.

learn more… | top users | synonyms

-1
votes
0answers
11 views

alpha blending with virtual machine [closed]

Is it possible to use alpha blending with virtual machine? The problem is: I have Mac OS 10.7.5 and moder laptop I have an graphical application for Windows I tried it with VirtualBox and got error ...
2
votes
2answers
67 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 ...
4
votes
0answers
128 views

Multiple transparent textures on the same mesh face in Three.js

Is it possible to lay multiple textures on top of each other on the same face in Three.js so that the alpha blending is done GPU accelerated in webGL? The textures are (or should be) applied to the ...
1
vote
3answers
38 views

How to blend images using Photoshop 'darker color' blend mode?

I need to display user-uploaded logos on a background-image. The background of the logo's should be transparent. The problem is that most users have no knowledge of how to make their images ...
0
votes
0answers
24 views

Drawing with high precision alpha blending

I need to blend together about 1 million semi-transparent rectangles, while being able to manage transparency accuracy by increment of 1e-6. Typically, if my 1 millions rectangle would be drawn on ...
0
votes
2answers
23 views

Color-keying image not working in PHP

The input image has a magenta background. The outputted image always has a black background. Both attempts give same results. I want it to be alpha background, not black background. Attempt #1: ...
0
votes
1answer
38 views

GPU Texture Splatting

Just as a quick example, I'm trying to do the following: + + = With the third image as an alpha map, how could this be implemented in a DX9-compatible pixel shader to "blend" between the ...
0
votes
2answers
28 views

Change Sprite alpha previously changed by AlphaModifiers

I'm running AlphaModifier on a Sprite mSprite.setBlendFunction(GL10.GL_SRC_ALPHA, GL10.GL_ONE_MINUS_SRC_ALPHA); mSprite.registerEntityModifier(new AlphaModifier(.5f,1,0.4f)); After that i want to ...
0
votes
1answer
47 views

Why is alpha blending so expensive?

From my fledgling experience with OpenGL, I'm seeing performance hits coming from alpha blending especially. I won't show any code samples because it's not particularly relevant. I'm just interested ...
0
votes
1answer
76 views

XNA 4 C# - Not Alpha Blending to Black

I'm trying to have my Splash Screen fade into black. I realized it fades into whatever color the screen is cleared with in the default line GraphicsDevice.Clear(Color.White); in the default update ...
2
votes
2answers
151 views

Using translucent png's as textures and fading them OpenGL ES 2.0

I have some .png files that I'm using as textures for my 2d game quad sprites. Some of these already have partially transparent pixels in them and I need to be able to display them correctly and fade ...
0
votes
1answer
41 views

How to give a CCSprite an specified alpha channel?

I want to create a paint-pen in Cocos2D. and I have a png file which specify the alpha channel value of a image.(only one channel) I want to give the alpha value to a ccsprite's texture which is pure ...
0
votes
0answers
107 views

LWJGL Texture blending not working

I'm trying to draw a gradient and then draw a transparent texture ontop of it. This is the code I'm using right now: GL11.glClearColor(0.0F, 0.0F, 0.0F, 0.0F); // Draw the gradient ...
0
votes
1answer
72 views

XNA Alpha Blending With Primitives and Sprites

I've been using XNA for awhile now and I really enjoy using its interface. Right now we're trying to make a "fog of war" system. We're making an RTS and we're basically trying to obscure the map. ...
0
votes
1answer
148 views

Blending problems using opengl (via lwjgl) when using a png texture

I have a (hopefully) small problem when using blending in OpenGL. Currently I use LWJGL and Slick-Util to load the Texture. The texture itself is a 2048x2048 png graphic, in which I store tiles of a ...
0
votes
0answers
24 views

Proper alpha with XNA 4.0

I have a hair mesh composed of a bunch of planes textured with partially transparent pngs. It's loaded into XNA as a skinned model. I read that I'm supposed to draw anything with alpha last, from ...
0
votes
0answers
65 views

Is there a way to put in a buffer FBO texture output format GL_ALPHA?

I am using ftgl font library. ftgl function to create image has this code: glBindTexture(GL_TEXTURE_2D, textID); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP); ...
1
vote
0answers
88 views

XNA Alpha Blending working different on 2 PCs

I'm currently developing a tiny window cleaning game in XNA where I draw a layer of dirt (a 2d Texture with varying alpha) above any random image. The layer of dirt should get more and more ...
1
vote
1answer
241 views

XNA / MonoGame: depth sorting alpha blended UserPrimitives

Googling around a lot for this, read this very useful article, but still wondering about a solution for my project. This screenshot illustrates my problem perfectly: There are 2 objects: the red ...
0
votes
1answer
76 views

How to draw with replacement instead of blending

I'm trying to "draw" areas of transparency onto a bitmap -- like cutting holes in the image. The following code does not draw a line of transparency because drawing a transparent line onto a bitmap ...
0
votes
1answer
33 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
1answer
290 views

Windows 8 Store App DirectX 11.1 Enabling Blendstate with loaded PNG texture with alpha

I am loading a PNG with transparency to a texture with the following code: ComPtr<IWICStream> stream; ComPtr<IWICBitmapDecoder> bitmapDecoder; ComPtr<IWICBitmapFrameDecode> ...
1
vote
1answer
142 views

Opengl Multitexturing and blending

I explain my problem: I have three png image, the first has channel alpha, the other two are RGB: frame mask background I have to blend ...
2
votes
0answers
260 views

DX11 Alpha blending when rendering to a texture

FINAL EDIT: Resolved... just needed to learn how alpha blending works in-depth. I should have had: oBlendStateDesc.RenderTarget[a].DestBlendAlpha = D3D11_BLEND_ZERO; ...set to D3D11_BLEND_ONE to ...
1
vote
1answer
479 views

Overlay two or more Bitmaps to show in Picturebox (C#)

In my C# program I have a Picturebox in which i want to show a stream of video (consecutive frames). I receive raw data, that I then transform into Bitmap or Image. I can show one image at a time ...
0
votes
1answer
58 views

LayeredWindows and variable alpha translucency - using a Brush?

I have a layered window (using SetLayeredWindowAttributes). If I set the alpha on the whole window to 128 and draw black rectangles on it, it works as expected (black rectangles that show through at ...
1
vote
1answer
132 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
70 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 ...
0
votes
1answer
82 views

Color.FromNonPremultiplied different tinting with BlendState.NonPremultiplied

In my XNA project I use non-processed images and draw them with BlendState.NonPremultiplied so they look normal around the edges. But when I use non-white color (Color.FromNonPremultiplied(12, 34, 56, ...
0
votes
1answer
196 views

OpenGL repeated calls to glTexImage2D and alpha blending

This is more out of curiosity than for any practical purpose: is there anything in the OpenGL specification that suggests that calling glTexImage2D many times (e.g., once per frame) is illegal? I mean ...
3
votes
1answer
99 views

Alpha Blending in Emgu CV

Hi I am learning Emgu CV. I would like to perform alpha blend(addWeighted). I have the following codes Image<Bgr, Byte> image = new Image<Bgr, Byte>(filename); Image<Gray, Byte> ...
1
vote
2answers
153 views

Fastest way (performance wise) to darken UIView or CALayer

I have a UIView / CALayer which I would like to darken. How can I as fast as possible darken it? Is there any way to avoid blending? Following alternatives is known to me create a opaque CALayer ...
4
votes
2answers
110 views

Sorting meshes in XNA

I have problem with trees in XNA. When I have tree, I need to use alpha blending to make non-leaf parts transparent, but some parts of model are not correctly displayed and thus alpha blending fails. ...
1
vote
1answer
251 views

Layered windows, UpdateLayeredWindow, alpha blending and mouse events

In Windows Forms and C#, I'm using a form with the WS_EX_LAYERED style, and calling UpdateLayeredWindow to set the background to an image that is transparent/alpha blending: ...
0
votes
1answer
196 views

Combine (Blend) two images to a final image, but avoid current content

When layering multiple I have to combine them at least once with an "empty" image or background. But there is nothing like "empty". It's transparent black oder transparent white. Even being completely ...
0
votes
1answer
244 views

Why doesn't UIBezierPath strokeWithBlendMode do anything?

I've set up a drawing tool using an approach similar to what's shown in this SO question ... I have a subclass of UIView that tracks touches, creates UIBezierPath objects, adds the paths to an array, ...
1
vote
1answer
222 views

Alpha Blending textures on two different passes using GLSL

What I have is a set of 9 squares in a 3x3 grid being rendered for testing this blending function. Here's the idea. On Pass 1: Bind texture1 (dirt) Render the squares using tex1 = Dirt On Pass ...
0
votes
1answer
115 views

How can I achieve partially see-through effect in iOS?

Basically I want to put an image on an UIView,and than cover this image with an semitransparent view to make the image blurring, eventually put an UIButton on the semitransparent view, now I want the ...
1
vote
0answers
71 views

Apply blending mode on views without specifying colors

I am creating an drawing application, I need to add blending modes functionality in my app. What I am doing is drawing my circle through core graphics and many other shapes are drawn .I want to add ...
0
votes
0answers
90 views

Under Android, I want to merge 2 bitmap images into 1, where top image becomes less dominant the further from the centre the pixels are

h Developing under ANdroid. I have a PorterDuff implementation which allows me to diminish the Alpha channel on a bitmap as I move away, in all directions, from a central point, as such the ...
1
vote
1answer
166 views

Strange alpha blending results with ShaderEffectItem

I'm trying to apply a simple alpha mask on a QML item using ShaderEffectItem. Here is a minimal (non-)working example: I have a red-to-write gradient as the background and want to draw a green ...
1
vote
1answer
114 views

Merge a PNG to a JPG or other php

I have tried many solutions and the truth and got to the point where you do not know what else to do. The following image is a PNG ("cover.png"): As you will have a blank oval really is completely ...
0
votes
2answers
146 views

blend overlapping triangles in opengl

I'm building a thick line from triangles. The problem i'm having is that when the curve is semi transparent and some triangles overlap i get the effect in the picture. I would like for the triangles ...
0
votes
0answers
59 views

IPad iOS 5.1.1 & drawing alpha

I've some trouble drawing my PVR images on IPad, please look at screenshots here http://www.ex.ua/view_storage/386517375914 I've read much info about premultiplied alpha that is used by iOS and may ...
4
votes
2answers
913 views

Alphablend and TransparentBlt

This question is related to my earlier question on SO. I want to combine two layers with alpha applied only to a specific portion of the source layer. One way I tried was to set SourceConstantAlpha ...
0
votes
0answers
120 views

Recreate HSV color using blend modes

I’m working on an app that creates images whose hue, saturation, and value change according to different parameters. For performance reasons, it would make sense to render the hue, saturation, and ...
1
vote
1answer
206 views

Why does AlphaBlend always return false (drawing on canvas)?

I am trying to blend two canvases together using the windows alphablend API call. First I draw some thing on the main canvas (destination), then instantiate another canvas using TBitmap, draw onto ...
1
vote
2answers
749 views

Creating and blending a dynamic texture in OpenGL

I need to render a sphere to a texture (done using a Framebuffer Object (FBO)), and then alpha blend that texture with the back buffer. So far I'm not doing any processing with the texture except ...
0
votes
0answers
353 views

OpenGL: Textures seem not to blend correctly on top of translucent surface

I am drawing objects in OpenGL in this order and z-order: A background quad, background objects = images with titles (textures) a translucent black quad which darkens the background objects ...
0
votes
0answers
233 views

Java LWJGL Changing a texture's alpha value

Can I use code in LWJGL to change a texture's alpha value? or render a texture with a certain alpha value without creating a couple images of the texture with different alpha values? EDIT: Figured ...

1 2 3 4 5 6