0
votes
1answer
15 views
What browsers support Alpha channel in colors?
Since I'm always sticking to CSS 2, it was a (pleasant) surprise for me today to find out that CSS 3 supports alpha channels in colors. That allows for a nice range of effects. But …
0
votes
1answer
153 views
PNG8+Alpha from Fireworks (colormap) are different/smaller than from elsewhere (RGBA). Why?
In Fireworks, when you export a PNG8 file with alpha transparency, the resulting file will be something like this:
png8-fireworks.png: PNG image data, 500 x 500, 8-bit colormap, n …
0
votes
1answer
42 views
Mask white color out of PNG image on iPhone
I know that there are already 2 relevant posts on that, but it's not clear...
So the case is this...:
I have a UIImage which consists of a png file requested from a url on the ne …
1
vote
2answers
141 views
How to load PNGs and export to TGA keeping alpha in C#?
I'm writing a tool to automate some of our asset making for a game. What I want to do is take a folder of PNG files, combine them into a texture atlas and then export the atlas as …
0
votes
2answers
320 views
UIView alpha problem
Hello.
I'm having problems setting the alpha value of a UIView subclass object. Any suggestions?
I have UIView project whose alpha property I'm manipulating to control brightne …
1
vote
2answers
74 views
How do I blit a PNG with some transparency onto a surface in Pygame?
I'm trying to blit a PNG image onto a surface, but the transparent part of the image turns black for some reason, here's the simple code:
screen = pygame.display.set_mode((800, 60 …
1
vote
2answers
82 views
OpenGL alpha transparency
Hey everyone,
I am starting to use opengl and I wanted to try alpha transparency. Here's my code:
void display(void);
int main(int argc, char** argv)
{
glutInit(&argc, …
0
votes
2answers
59 views
iPhone Programming: Applying Alpha to Parent but not to Child Views
Is it possible to set Alpha to .75 or .50 (transparent) for Parent view but the Child views/controls are opaque (Alpha channel 1.0 - completely visible).
Whenever i set Alpha of m …
0
votes
3answers
128 views
How to programmatically alpha fade a textured object in OpenGL ES 1.1 (iPhone)
I've been using OpenGL ES 1.1 on the iPhone for 10 months, and in that time there is one seemingly simple task I have been unable to do: programmatically fade a textured object. To …
0
votes
0answers
42 views
iPhone SDK: Hit-testing with PNG Alpha channels
I have a simple app which has a bunch of icons which should be dragged into a circle.
Both the icons and circle will be PNGs with alpha channels.
Could someone please help me wit …
0
votes
1answer
30 views
Changing the tablecell
Was wondering how you can make the cell transparent without affecting its children (subviews)? I tried just setting the alpha property but obviously that affects the other views th …
0
votes
2answers
73 views
Change Alpha on Main Window - Cocoa
Hey guys,
I want to know if I can slowly increase the alpha MainWindow when I open the app and when I close the app. I know it may involve timers, and things like that, but I neve …
0
votes
0answers
190 views
Alpha channel in OpenCV
Hi,
does OpenCV support alpha-channel? Or is there any way to work with transparent png? I need to merge two images, where the first one is background and the second one is image w …
3
votes
1answer
109 views
PIL: Thumbnail and end up with a square image
Calling
image = Image.open(data)
image.thumbnail((36,36), Image.NEAREST)
will maintain the aspect ratio. But I need to end up displaying the image like this:
<img src="/medi …
0
votes
1answer
89 views
Using Alpha in image manipulation
I'm trying to get an image to display with one of the colors replaced with a white alpha so that I can layer it on top of other images. I've got it so that I can change colors eas …
