Tagged Questions

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

learn more… | top users | synonyms

16
votes
3answers
2k views

Is it possible to render web content over a clear background using WebKit?

I'm trying to gauge the possibility of a patch to WebKit which would allow all rendered graphics to be rendered onto a fully transparent background. The desired effect is to render web content ...
12
votes
1answer
2k views

UIColor `-colorWithPatternImage:` alpha blending problem solution. (iOS SDK 4.1)

Solution note, not a question. I used this code to set background as a pattern image: UIImage *bg = SomeImage(); UIColor *bgc = [UIColor colorWithPatternImage:bg]; [self ...
9
votes
2answers
462 views

What would cause OpenGL alpha blending differences between Windows and OS X?

There are 3 backgrounds in the below image: black white & grey There are 3 bars on each one: black -> transparent, white -> transparent, and colors -> transparent I am using ...
9
votes
5answers
10k views

blend two uiimages

I'm trying to blend a background with a foreground image, where the foreground image is a transparent image with lines on it. I am trying to do it this way. ...
8
votes
1answer
762 views

Is it possible to achieve MAX(As,Ad) openGL blending?

I am working on a game where I want to create shadows under a series of sprites on a grid. The shadows are larger than the sprites themselves and the sprites are animated (i.e. move and rotate). I ...
7
votes
1answer
134 views

ImageList promisses me Alphablending, but how do I enable it?

I want my buttons to have images with alphablending on them. As instructed I've included a TXPManifest component on my mainform. Below are some images I've loaded into my project. However my ...
6
votes
3answers
179 views

Discoloration in OpenGL

I'm using OpenGL to draw in 2D. I'm trying to overlay textures with alpha. I have done this: glDisable(GL_DEPTH_TEST); glDepthMask(GL_FALSE); glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA); ...
6
votes
2answers
3k views

Creating a transparent window in C++ Win32

I'm creating what should be a very simple Win32 C++ app who's sole purpose it to ONLY display a semi-transparent PNG. The window shouldn't have any chrome, and all the opacity should be controlled in ...
5
votes
5answers
2k views

Windows Forms: Making a cursor bitmap partially transparent

I want to use partially transparent images in drag/drop operations. This is all set up and works fine, but the actual transformation to transparency has a weird side effect. For some reason, the ...
5
votes
1answer
560 views

Creating custom transparent control

I am trying to create a custom control that displays a bitmap with per-pixel alphablend (as some of you already know for other questions). Right now I am using a custom control in the resource editor ...
5
votes
6answers
7k views

How to draw 32-bit alpha channel bitmaps?

I need to create a custom control to display bmp images with alpha channel. The background can be painted in different colors and the images have shadows so I need to truly "paint" the alpha channel. ...
4
votes
2answers
201 views

OpenGL transparency/translucency

I have a question with alpha blending in openGL... I've tried some stuff for drawing transparent objects... I've seen a nice (ideal) result by disabling GL_DEPTH_TEST before drawing the transparent ...
4
votes
3answers
198 views

Computing “average” of two colors

This is only marginally programming related - has much more to do w/ colors and their representation. I am working on a very low level app. I have an array of bytes in memory. Those are characters. ...
4
votes
1answer
1k views

Why does OpenGL blending not work on HTC Desire?

Does anyone know how to enable blending in OpenGL (android) on a HTC Desire. I am trying to draw colored triangles and using the alpha value of the color buffer to blend them with the background (or ...
4
votes
2answers
1k views

Antialiased text on transparent bitmap

I'd like to draw antialiased text on a transparent bitmap and have the antialiasing drawn as alpha blended pixels. This way, I can draw the bitmap onto any color surface (or an image, for that matter) ...
4
votes
2answers
3k views

Fade in an alpha-blended PNG form in Delphi

I asked a question about this some years back when Vista was first released, but never resolved the problem and shelved it as something to consider later. I have a splash screen that I went to great ...
3
votes
3answers
1k views

OpenGL ES (IPhone) alpha blending looks weird

I'm writing a game for IPhone in Opengl ES, and I'm experiencing a problem with alpha blending: I'm using glBlendFunc(Gl.GL_SRC_ALPHA, Gl.GL_ONE_MINUS_SRC_ALPHA) to achieve alpha blending and trying ...
3
votes
3answers
265 views

Per-component alpha-channels with OpenGL?

I'm a complete beginner with openGL, and I'm trying to see if what I want to do is feasible before I get started. I'd like to know if it's possible to perform blending with one alpha channel per ...
3
votes
3answers
509 views

Crossfading scenes in OpenGL

I would like to render two scenes in OpenGL, and then do a visual crossfade from one scene to the second. Can anyone suggest a starting point for learning how to do this? Cheers
3
votes
1answer
2k views

wxWidgets - Alpha blending

Is there a way in wxWidget to do alpha blending operations such as multiplying the alpha of a bitmap versus the RGB of other bitmap to generate new images (such as rendering a photo as an anti-aliased ...
3
votes
1answer
896 views

Combine multiple images into a single image for later painting, with alpha blending

I have a graphics system for Java which allows objects to be "wallpapered" by specifying multiple images, which can have (relatively) complex alignment and resizing options applied. In order to ...
3
votes
2answers
3k views

iPhone OpenGL ES incorrect alpha blending

I have a problem with incorrect alpha blending results with openGL ES on iPhone. This is my code for creating texture object: glGenTextures(1, &tex_name); glBindTexture(GL_TEXTURE_2D, tex_name); ...
3
votes
2answers
5k views

How to calculate an RGB colour by specifying an alpha blending amount?

I'm writing a colour picker that gets the pixel RGB values from wherever you point to on the screen. I want to also have the option of specifying that the colour I picked already has an alpha value. ...
3
votes
2answers
2k views

What is the formula for alpha blending for a number of pixels?

I have a number of RGBA pixels, each of them has an alpha component. So I have a list of pixels: (p0 p1 p2 p3 p4 ... pn) where p_0_ is the front pixel and p_n_ is the farthest (at the back). The ...
2
votes
1answer
109 views

OpenGL alpha blending

I've found 5349574673 pages on alpha blending and I still can't get the desired result. I'm trying to make gif/png files display properly (WITH transparency/translucency) using opengl. Here's my ...
2
votes
2answers
98 views

Create a PNG having JPG and AlphaChannel in C#

How can I create a PNG file if I have two separated JPG files with the image and the alpha channel? JPG Image + JPG Mask --> PNG with transparency I've tried WPF solutions: image.OpacityMask = new ...
2
votes
1answer
200 views

Merge two images with transparencies in PHP

I'm attempting to make a composite image of several .png's with background transparencies via php and store the resulting image in my database. My problem is that the transparent sections of my images ...
2
votes
4answers
2k views

iOS: simple animation

I want to create a simple animation changing alpha value: [UIView beginAnimations:nil context:NULL]; [UIView setAnimationDuration:2]; [view1 setAlpha:0.00]; [UIView commitAnimations]; Ok in this ...
2
votes
1answer
213 views

Why doesn't the alpha pixel in html canvas blend in with the background color?

http://jsfiddle.net/jBgqW/ I've painted the background with fillRect and fillStyle set to rgb(255,0,0) but when I iterate through the pixels and set some random color and value of the alpha pixel to ...
2
votes
3answers
1k views

How does blending work with GLSL ES fragment shaders in WebGL?

I'm trying to get a simple effect to display using WebGL. Naturally, this means I'm using the fragment shader language defined in the GLSL ES 1.0 specification. The code I am working with is largely ...
2
votes
2answers
804 views

How to draw transparent image on a form?

I want to a draw transparent image on Delphi form, but it is not working. Here is original PNG: I have loaded image in a TImage:: Image1.Transparent := True; Form1.Color := clWhite; ...
2
votes
2answers
359 views

How to make ARGB transparency using bitwise operators

I need to make transparency, having 2 pixels: pixel1: {A, R, G, B} - foreground pixel pixel2: {A, R, G, B} - background pixel A,R,G,B are Byte values each color is represented by byte value now ...
2
votes
2answers
303 views

overlapping semi transparent rectangles

Is it possible to draw overlapping semi transparent (with a low alpha value) which will not accumalate the alpha values. ? When I do it now, if in the overalpping area I have to rectangle with alpha ...
2
votes
1answer
379 views

Why doesn't this D2006 code to fade a PNG Image work?

This question springs from an earlier one. Most of the code is from suggested answers that probably worked in later versions of Delphi. In D2006 I don't get the full range of opacity, and the ...
2
votes
2answers
249 views

What is the simplest way to add an AlphaBlendValue property to Delphi's TImage

I have a "caution" image on a dialog that is shown if there are questionable parameter values. Users do not always notice it, so I want to fade it in and out cyclically over a second or so (yes, I ...
2
votes
2answers
408 views

How to use pre-multiplied during image convolution to solve alpha bleed problem?

i'm trying to apply a box blur to an transparent image, and i'm getting a "dark halo" around the edges. Jerry Huxtable has a short mention of the problem, and a very good demonstration showing the ...
2
votes
1answer
301 views

photoshop blend math in XNA

there's a great page with some c code for the blend modes in photoshop. What I want is to use some of these modes in my XNA application. In particular, overlay, hue and saturation. Do you think it is ...
2
votes
4answers
2k views

android/opengles alpha textures not semitransparent but binary transparent

I am drawing some textures with alpha channel, but when they are displayed it looks like the alpha channel is only binary. So a pixel is either transparent or opaque, although in the texture file ...
2
votes
4answers
677 views

Draw a texture in OpenGL while ignoring its alpha channel

I have a texture loaded into memory that is of RGBA format with various alpha values. The image is loaded as so: GLuint texture = 0; glGenTextures(1, &texture); glBindTexture(GL_TEXTURE_2D, ...
2
votes
3answers
312 views

What is the correct way to perform alpha blending? (C)

I'm writing a very simple graphics library, and I'm trying to figure out how to do alpha blending. I tried it a few times, but my results were less than satisfactory. According to Wikipedia, I should ...
2
votes
1answer
264 views

Blending transparent textures with depth

I am trying to blend textures which have transparent areas: glEnable( GL_TEXTURE_2D ); glBindTexture( GL_TEXTURE_2D, ...); glVertexPointer( 2, GL_FLOAT, 0, ... ); glEnable (GL_BLEND); glBlendFunc ...
2
votes
0answers
242 views

Alpha blending is slow on linux

we are developing an SWT/RCP(Eclipse 3.5) application on both Windows and Linux (on identical hardware). The application is a GIS app which shows several layered maps(PNG images) rendered with alpha ...
2
votes
1answer
635 views

Variable alpha blending in pylab

How does one control the transparency over a 2D image in pylab? I'd like to give two sets of values (X,Y,Z,T) where X,Y are arrays of positions, Z is the color value, and T is the transparency to a ...
2
votes
2answers
799 views

Constant opacity with glBlendFunc on iPhone

What glBlendFunc should I use to ensure that the opacity of my drawing is always the same? When I use glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA) and multiple images are drawn on top of each ...
2
votes
2answers
2k views

opengl - blending with previous contents of framebuffer

I am rendering to a texture through a framebuffer object, and when I draw transparent primitives, the primitives are blended properly with other primitives drawn in that single draw step, but they are ...
2
votes
2answers
995 views

Transparent FrameBuffer background in OpenGL

I want to use glClear and glClearColor to fill a frame buffer with a colour including alpha transparency. However the framebuffer always renders as opaque when binded to a texture which is rendered to ...
2
votes
3answers
1k views

Direct3D rendering 2D images with “multiply” blending mode and alpha

I'm trying to replicate the Photoshop filter multiply with Direct3D. I've been reading and googling about the different render states and I've got the effect almost working. The problem is that it's ...
2
votes
1answer
1k views

loading a simple semi transparent PNG in Windows Mobile using C#

I am new to Windows Mobile programming. I want to load a PNG file which has an Alpha Channel. After 2 days of searching in Internet, I am still at square 1. Can someone help me? I got an example which ...
2
votes
1answer
169 views

Is there a LGPL/Apache/BSD Python library for rendering modern HTML and Flash with a transparent background on Windows,Mac,Linux?

I'm looking for a Python library that's suitable, with DOM access too. I don't mind if the flash transparency doesn't carry over. PyQT's license isn't compatible with the project, and PySide isn't ...
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, ...

1 2 3 4