Tagged Questions

The alpha transparency of an image defines how transparent the pixels of this image are. Typically, each pixel has an alpha value between 0 (fully transparent) and 255 (fully opaque).

learn more… | top users | synonyms

6
votes
1answer
94 views

Transparent equivalent of given color

I've had this a few times, so here goes: I'm making some plots which hold curves with estimates of a parameter given a tuning parameter. Typically, I also have SDs for each estimated value, so I ...
5
votes
4answers
572 views

PNG with transparency from Photoshop to Flash: how to make .swf display exactly what .psd does?

I have two layers in Photoshop: 1 -- a texture, 2 -- a semi-transparent image that overlaps texture. The combination of the two looks nice in Photoshop. I export them separately from Photoshop saving ...
5
votes
1answer
460 views

Delphi 2006: Run-time assignment of PNG to TImage loses alpha transparency

Delphi 2006's TImage doesn't quite support PNGs. In order to have images with alpha transparency on my forms I have to load them at run-time. I can load them at design time but they don't survive, I ...
4
votes
1answer
370 views

Calculate resulting RGB from 2 colors, one is transparent

I'm looking for a formula to convert them. I know to convert a general transparency it is alpha * new + ( 1 - alpha ) * old I have: Color A : RGB( 85, 113, 135 ) Color B : RGB( 43, 169, 225 ) ...
4
votes
5answers
299 views

alpha transparency solution in IE

I am building a website with a TON of png-24 files that have transparent background. In IE 6 they obviously aren't displayed correctly, so I need some sort of reliable, good solution that will fix the ...
3
votes
1answer
378 views

Transparent PNG (24) issue in IE8 and below using jQuery Cycle

I'm using jQuery cycle to fade my slideshow in / out. My slides have a background, and their are semi-transparent PNG's (using tag) within my slides. While the slide is fading in, the ...
3
votes
1answer
3k views

How to create an h264 video with an alpha channel for use with HTML5 Canvas?

I've been interested in this demo: http://jakearchibald.com/scratch/alphavid/ I also saw this question on here: Can I have a video with transparent background using HTML5 video tag? But I can't ...
3
votes
1answer
3k views

Access to raw data in ARGB_8888 Android Bitmap

I am trying to access the raw data of a Bitmap in ARGB_8888 format on Android, using the copyPixelsToBuffer and copyPixelsFromBuffer methods. However, invocation of those calls seems to always apply ...
3
votes
2answers
274 views

Java Swing: Ghost text showing up when updating text on a JTextArea with partially transparent background

So here's the deal: I've got a JPanel and a JTextArea inside that one. The JPanel has a background color which has an alpha value of 200, ie. you can paritally see the background image through the ...
3
votes
2answers
335 views

internet explorer: semi-transparent images

I have the two images below. They are the same image, with one having a slight glow effect on the text. They are setup as below: <div id="header"><a></a></div> withe the ...
3
votes
3answers
2k views

CSS opacity and child elements

<style type="text/css"> div#foo { background: #0000ff; width: 200px; height: 200px; opacity: 0.30; filter: alpha(opacity = 30); } div#foo>div { color: black; ...
3
votes
4answers
2k views

Replace transparency in PNG images with white background

I've got some PNG images with transparency, and I need to create versions with the image layer composed onto a white background. I've tried various things with Image Magick "convert" operations, but ...
2
votes
1answer
78 views

Saving a one color bitmap with alpha channel in Windows Forms saves a different (wrong) color

In C#, .NET 2.0, Windows Forms, Visual Studio Express 2010, I'm saving an image made of the same color: Bitmap bitmap = new Bitmap(width, height, PixelFormat.Format32bppArgb); using (Graphics ...
2
votes
1answer
224 views

How to create child layered alpha-transparent window?

I am trying to create transparent child window. procedure TForm1.BtnGoClick(Sender: TObject); var bmp:TBitmap; BitmapPos: TPoint; BitmapSize: TSIZE; BlendFunction: _BLENDFUNCTION; exStyle: ...
2
votes
1answer
132 views

Changing alpha value on top and bottom parts of UIImageView

I'm picking up a photo from the photo albums, however I would like to be able to do the following with it: Change the alpha value of the top and bottom parts (lets say 20 pixles from the top and 20 ...
2
votes
2answers
688 views

C# converting transparent png to jpg black background

I'm using System.Drawing.Image in .Net to do a simple conversion from png to jpeg. I'm basically just using these two lines of code: Image img = Image.FromFile(filename); img.Save(newFilename, ...
2
votes
2answers
1k views

Setting alpha transparency at a listView android

Hi i would like to set some transparency to my listview , i've alredy see some examples of that , but all of than were a 100% transparent . as this topic : How to make the ListView transparent in ...
2
votes
1answer
310 views

PyGTK StatusIcon with transparency

I'm trying to create a PyGTK StatusIcon with transparent background. I need to draw the contents of the StatusIcon at runtime. StatusIcon wants a Pixbuf object (which can have transparency). No ...
1
vote
2answers
40 views

Manually alpha blending an RGBA pixel with an RGB pixel

I am trying to do an alpha blend operation of an RGBA image (foreground image), on to a RGB image (background image). However, while doing so I think I may be doing the wrong alpha blending operation ...
1
vote
1answer
45 views

c++ opengl bmp and alpha channel

I have some bmp's saved in 32bit via photoshop. The first 24 bit should represent RGB and the last 8 bit should represent the alpha channel. I'm loading my bitmap: Bitmap* bStart = new ...
1
vote
1answer
22 views

Setting the alpha of the table with a transparent subview to a UITableView

I have added a subview over my UITableView using: TransparentViewController *tvc = [[TransparentViewController alloc] initWithNibName:@"TransparentViewController" ...
1
vote
1answer
37 views

OpenGL alpha blending inside an transparent object

I have encountered a problem when simulation transparency in OpenGL. Here is the scenario: I have a ship which is represented by a sphere. Now I though about adding a shield around the ship. I chose ...
1
vote
1answer
43 views

How to figure out, If an imagefile (base64) has transparency?

i wonder, how i could figure out if an image has a transparency effect applied. Is there any way in JavaScript or HTML5? I have a Base64-coded image. Is there a way to read out the ...
1
vote
1answer
39 views

How to have opacity on my texture in directx 9?

Been trying hard to find a solution to this, but the results are pretty bad. Basically I want to draw a texture (it's made up of 2 triangles so it's a quad), and make them have alpha values (0-255, ...
1
vote
0answers
175 views

Convert FLV video with alpha channel to PNGs with transparency

I have some FLV videos with alpha channels, and I want to convert each of them to PNG images using ffmpeg but keep the transparency. So far, I've tried this: ffmpeg -i input.flv -an -an -y %d.png ...
1
vote
1answer
359 views

openCV: adding transparency to IplImage

I have a 3-channel IplImage. I would like to create a 4-channel image and set the alpha channel for it to a value less than 1.0 to make it semi-transparent. First I set the alpha channel (the 4-th ...
1
vote
0answers
65 views

Unusual result when merging two transparent images in php

Im wondering if I'm doing something wrong, or if this is as good a result as im going to get. Both PNGs on the left are 95x111. The image of the robot has a 5px or so padding of transparent pixels ...
1
vote
1answer
167 views

OpenGL: glTexEnvi, glBlendFunc and On Screen Text Messages

I'm developing a movie player and I'm using OpenGL to draw frames and On Screen Messages. To draw the frame I use: glBegin(GL_QUADS); // Draw the quads glTexCoord2f(0.0f, 0.0f); glVertex2f ...
1
vote
1answer
64 views

Opacity and filter causing memory leak in IE7

I have a div defined as <div id="block_screen">&nbsp</div> there is a stylesheet associated with its id #block_screen { position: absolute; background-color: #000; ...
1
vote
1answer
63 views

Vertical stripes on alpha channel PNGs when scaling in Safari on iPhone/iPad

In Safari on iPhone/iPad, when I use two fingers to zoom webpages that have PNGs with an alpha channel, there are obvious renderings errors (vertical stripes) at certain zoom levels. Does anyone know ...
1
vote
4answers
75 views

How to detect a browser that dosen't render .png transparency

I have this code that render's a image acording to the day of the week. But in IE6 and lower and probably some other browsers it won't render png opacity. So I want to change it a litle so that it ...
1
vote
1answer
115 views

Why does this code make the QImage lose its alpha channel?

I'm trying to understand why the code below changes the QImage in Qt. It's not meant to do anything (yet), it's just for testing. When I run the code on an image with alpha, the alpha channel is lost ...
1
vote
2answers
285 views

How to make a QWidget alpha-transparent

I need to create an alpha transparent widget, it's basically a navigation bar with a shadow and the widgets below need to be partially visible through the shadow. The widget loads a PNG then draws it ...
1
vote
1answer
57 views

Python `aggdraw` module bug (?): visible alpha channel

Imagine simple script: from PIL import Image from aggdraw import Draw, Brush im = Image.new("RGBA", (600, 600), (0, 0, 0, 0)) draw = Draw(im) brush = Brush("yellow") draw.polygon( ( ...
1
vote
1answer
83 views

Convert images to alpha transparency with PHP

$im = imagecreatefrompng('./test.png'); $white = imagecolorallocate($im, 255, 255, 255); imagecolortransparent($im, $white); This code is fine for removing pure white from an image, but I what I ...
1
vote
2answers
190 views

Good way to deal with alpha channels in 8-bit bitmap? - OpenGL - C++

I am loading bitmaps with OpenGL to texture a 3d mesh. Some of these bitmaps have alpha channels (transparency) for some of the pixels and I need to figure out the best way to obtain the values of ...
1
vote
3answers
413 views

Draw opaque lines onto translucent TBitmap

I’ve got an empty bitmap, and I’ve got a drawing routine that receives a TCanvas. The drawing routine is part of a larger library, and so effectively out of my control. Simply put: I want the pixels ...
1
vote
1answer
202 views

Printing images with partial transparency without introducing distortions

I'm having some troubles printing images and texts that have a 8 bit alpha channel. It looks like most printer drivers will incorrectly render the alpha channel, adding some dithering patterns instead ...
1
vote
1answer
289 views

Can I use icons with RGBA transparency when using GTK+ drag and drop?

I am in the process of adding drag and drop support to an existing Mono/C#/GTK# application. I was wondering whether it was possible to use RGBA transparency on the icons that appear under the mouse ...
1
vote
1answer
69 views

Is there a free tool for rendering a webpage to a PNG with a transparent background?

Say I have a very simple html page, containing a single line of text. I'm looking for a tool that would take that line of text, and superimpose it on a transparent PNG background. That logic would be ...
0
votes
0answers
13 views

Gallery android:unselectedAlpha

I have a Gallery that works perfectly, except only the first element is ever displayed at full alpha. I have the Gallery's style set to style="android:galleryItemBackground", and ...
0
votes
0answers
23 views

Trying to figure out a specific alpha mask application using IDirect3D9#SetTextureStageState

I'm trying to create a system where I can cause a fadeout on a texture using a second texture as an alpha mask. I load the color texture in stage 0 and the mask texture in stage 1. I can get them to ...
0
votes
0answers
37 views

Creating merged image from 2 png files or mixed png and jpeg PHP GD

As in the topic. I have a problem with GD library. Below is my code: $org_dst_merged_tmp = imagecreatetruecolor($layout_width, $layout_height); imagealphablending($org_dst_merged_tmp, ...
0
votes
1answer
50 views

android gallery view change alpha value

I am making an android gallery. I want to be able to extend it's basic behavior so the view that its centered to be most visible (it's alpha value to be 1.0) and the views that are from the left and ...
0
votes
1answer
107 views

Is there a way to set drawable's Alpha using XML?

Easy like itself . I wanna make an alpha button , which would have a selected drawable this way: <?xml version="1.0" encoding="utf-8"?> <selector ...
0
votes
0answers
22 views

What is the secret behind the undocumented 32bpp BMP transparency support?

The best source of information regarding BMP files is MSDN:BITMAPINFOHEADER structure but this article contains no information regarding transparency (alpha channel) support. Still over years I keep ...
0
votes
1answer
162 views

Overlaying transparent image over output of camera in opencv

I have transparent images [shown below] and I am trying to overlay it with aishack.in cvOverlayImage() function to overlay it on camera source cvOverlayImage() void cvOverlayImage(IplImage* src, ...
0
votes
2answers
48 views

Are ARGB and ARGB_PRE the same when the alpha is full?

If we take, say, 32-bits per pixel pictures using ARGB and ARGB_PRE (ARGB but with premultiplied alpha), are the values identical when the alpha is fully on (that is: no transparency at all)? For ...
0
votes
0answers
42 views

Why does Youtube add a black background to my alpha channel transparency-encoded FLV files?

Whenever I upload an FLV with a transparent background to Youtube, the video shows up with a black background even if it's embedded via the chromeless player with a wmode: transparent parameter. Why ...
0
votes
1answer
69 views

Incorrect Geometry When Enabling Alpha Blending

I have a test application with enabled transparency achieved through alpha blending. The application is built in C# using SlimDX. However, on one of my objects that has alpha blending applied, I am ...

1 2