Tagged Questions
The alpha tag has no wiki summary.
18
votes
7answers
16k views
Can PNG image transparency be preserved when using PHP's GDlib imagecopyresampled?
The following PHP code snippet uses GD to resize a browser-uploaded PNG to 128x128. It works great, except that the transparent areas in the original image are being replaced with a solid color- black ...
15
votes
3answers
1k views
Transparent png on android market for high resolution asset
I'm trying to upload a logo with a transparent background to the android market. For some reason, my png is getting transformed by the market in a way that removes the transparency.
My designer is ...
14
votes
3answers
5k views
Merging two images
I need to merge two images (BufferedImage) in Java. It wouldn't be a problem if there was no transparency. The base image already has some transparency. I want to keep this as it is and apply a "mask" ...
10
votes
2answers
1k 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="/media/image.png" ...
9
votes
1answer
307 views
UISlider ignores alpha when set to 0.5
Why does the UISlider view ignore the alpha view when set to 0.5?
Code:
for (int i = 0; i < 3; i++) {
UISlider *slider = [[[UISlider alloc]
initWithFrame:CGRectMake(0, i ...
9
votes
5answers
22k views
How to change the opacity (alpha, transparency) of an element in a canvas element after it has been drawn?
Using the HTML5 <canvas> element, I would like to load an image file (PNG, JPEG, etc.), draw it to the canvas completely transparently, and then fade it in. I have figured out how to load the ...
8
votes
1answer
3k views
iPhone: Changing CGImageAlphaInfo of CGImage
I have a PNG image that has an unsupported bitmap graphics context pixel format. Whenever I attempt to resize the image, CGBitmapContextCreate() chokes on the unsupported format
I receive the ...
7
votes
3answers
940 views
How to implement alpha gradient on a image?
I want to implement alpha gradient on an image. From 0.5 alfa on top of the image to 0.0 on bottom.
Any advice, tutorial, link is welcome.
7
votes
3answers
193 views
Is it okay these days to use PNG with alpha-transparency in websites?
I remember from 3 years ago that it was an absolutely huge pain to use any nice PNG with alpha in websites, because of IE6 and other bad browsers.
But how about now? How about if your target audience ...
7
votes
3answers
2k views
Using layered windows to create smooth window borders
We are developing a skinned app with various rounded edges on most of its windows. I am using window regions to define non-rectangular shapes, but nearly everyone objects to the jagged aliasing this ...
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
3answers
2k views
How do you draw transparent polygons with Python?
I'm using PIL (Python Imaging Library). I'd like to draw transparent polygons. It seems that specifying a fill color that includes alpha level does not work. Are their workarounds?
If it can't be ...
5
votes
1answer
142 views
Transform RGBA with underlying color into RGB?
i've got a problem with transforming Colors in Java. The simplified problem look like the following:
My application contains an image. I've layed an Recangle over this image. The color of the ...
5
votes
2answers
763 views
Alpha masking in c# System.Drawing?
I'm trying to draw an image, with a source Bitmap and an alpha mask Bitmap, using the System.Drawing.Graphics object.
At the moment I loop X and Y and use GetPixel and SetPixel to write the source ...
5
votes
1answer
2k views
Simple transparency example not working in Java 3D
I'm a complete n00b in j3d (but an expert in Java). Just starting out, I'm running into a problem playing with transparency. I've got a simple example which draws a rotating planar quad (disappears ...
5
votes
4answers
11k views
Set BufferedImage alpha mask in Java
I have two BufferedImages I loaded in from pngs. The first contains an image, the second an alpha mask for the image.
I want to create a combined image from the two, by applying the alpha mask. My ...
4
votes
2answers
927 views
SVG fill color transparency / alpha?
Is it possible to set a transparency or alpha level on SVG fill colours?
I've tried adding two values to the fill tag (changing it from fill="#044B94" to fill="#044B9466"), but this doesn't work.
4
votes
3answers
609 views
WPF BitmapImage and TIFF with CMYK + Alpha
I am using this code snippet to load various image files:
BitmapImage bitmap = new BitmapImage ();
bitmap.BeginInit ();
bitmap.UriSource = new System.Uri (path);
bitmap.CreateOptions = ...
4
votes
4answers
98 views
Developing using pre-release dev tools
We're developing a web site. One of the development tools we're using has an alpha release available of its next version which includes a number of features which we really want to use (ie they'd save ...
4
votes
1answer
3k views
Android alpha animation fadein fadeout with delays
I want to do a very simple alpha animation but I cannot find a valid way.
The idea is to perform this animation over a view:
alpha from 0 to 1 of 1 second
hold alpha at 1 for 5 seconds
alpha from 1 ...
4
votes
4answers
1k 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 my main UIView to ...
4
votes
3answers
1k views
How to use 32bit alpha-blended BMP in .Net
Is there any way to use this kind of format in .Net (C#)?
I want to use the same skin format that uTorrent uses in my app, but i can't get the transparent background.
Any ideas?
Thanks for your time.
3
votes
1answer
183 views
Colourise CGContextRef But Preserve Alpha
I have a CGContextRef and can draw on it and specify the alpha, and if I try and use it it works perfectly. However, I am trying to colourise it (currently either red or green), but whatever blend ...
3
votes
1answer
71 views
Alpha and inner movieclips
I have a movieclip singleCircle which is a child of doubleCircle. Both circles are 100% black. Now when I set the alpha of doubleCircle, instead of treating the movieclip as a whole, it seems to be ...
3
votes
1answer
85 views
TextBlock brush giving incorrect color
I have a TextBlock and a Rectangle, both sitting in an empty WPF4 window. The TextBlock's Foreground and the Rectangle's Fill are both set to a SolidColorBrush with value #80800000.
This is what it ...
3
votes
0answers
763 views
iOS: Video as GL texture with alpha transparency
I'm trying to figure out the best approach to display a video on a GL texture while preserving the transparency of the alpha channel.
Information about video as GL texture is here: Is it possible ...
3
votes
1answer
456 views
Can alpha transparency fill or stroke style be set separately from RGB in Canvas HTML5?
In Canvas/HTML5, I know you can use RGBA to set color and alpha transparency for fillStyle or strokeStyle. You can also use just RGB to set color with no alpha channel. is there a way you can change ...
3
votes
1answer
415 views
canvas.drawBitmap() only honors alpha layer when it is 0
I am loading png resources with BitmapFactory.decodeResource and then drawing them on a Canvas using drawBitmap().
I draw different layers one at a time so that transparent objects should occlude ...
3
votes
4answers
276 views
Sprite Batch doesn't change Alpha
I've run into an issue where the SpriteBatch doesn't draw with modified Alpha of specified "Trail".
What I'm trying to do is a "fade effect" where the alpha of "Item" decreases so that it gets more ...
3
votes
3answers
804 views
IE8, transparent PNG and filter:alpha
I'll cut right to the point. Here's the output:
(now some optional code - read only if you really want to ;))
Here's the markup:
<a href="/" id="logo_wrapper">
<span class="logo ...
3
votes
2answers
468 views
Alpha transparency in indexed-png images
Here is an image:
This image is a simple black-to-transparent gradient saved in full RGBA PNG.
Here is the same image, converted to indexed-alpha PNG by GIMP (Photoshop produces the same result)
...
3
votes
3answers
1k views
Display PNG with alpha channel in C#
Is there a way to properly display an image with alpha channel (let's say PNG) in C# application? Thank you for any suggestions.
UPDATE:
OK, my question was a bit unprecise. I'd like to acquire real ...
3
votes
2answers
780 views
Detect Alpha Channel with ImageMagick
Scenario
I would like to save images with alpha transparency as .png and images without alpha transparency as .jpg (even if their original format is .png or .gif). How can I detect whether or not an ...
3
votes
1answer
275 views
PHP script for calculating Krippendorff's Alpha
I can't find any PHP script to compute Krippendorff's Alpha. I need this for a project I'm working on, but the only things that I was able to find online are either written in Python (that I know ...
3
votes
2answers
2k views
Alpha masks with OpenGL
I want to use an alpha mask in OpenGL so that white(1)=visible and black(0)=hidden.
So what I do is I write something in the alpha component of the framebuffer using glColorMask(False, False, False, ...
3
votes
2answers
2k 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 a TGA and the UV ...
3
votes
1answer
1k views
Render to texture problem with alpha
When I render to texture, and then draw the same image, it seems to make everything darker. To get this image:
I'm rendering the upper-left square with color (1, 1, 1, .8) to a texture, then ...
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
2k views
Capturing EAGLview content WITH alpha channel on iPhone
have been struggling with this issue for quite some time now and couldn't find an answer so far. Basically, what I want to do, is capturing the content of my EAGLview and then use it to merge it with ...
3
votes
1answer
507 views
“Screen” effect in Java 2D graphics
This is a question that's been bugging me for some time now:
In photoshop/GIMP, there is a "screen" layer composition mode. This mode has bright colours have a strong alpha, and dark colours a weak ...
3
votes
3answers
7k views
UITableView background image alpha problems
I have a UIView with a UITableView for a subview. The UIView has an image applied to its background via setBackGroundColor, and I have applied a background to the UITableView in the same manner. ...
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
0answers
36 views
what's the relationships among opaque,alpha and backgroundColor of a UIView property?
eg:
I set UIView's alpha property as alpha = 0, Does that means its opaque property be treated as opaque=YES?
How opaque,alpha and backgroundColor affect the performance?
Anything else?...
...
2
votes
2answers
91 views
Alpha Mask Extraction process Objective C implementation
Do you have an Objective C implementation equivalent to ImageMagick's command :
convert -alpha Extract -type optimize -strip -quality 60 +dither Source.png Alpha.jpg
I was not able to find any ...
2
votes
2answers
59 views
Drawing textures with variable transparency
I am a moderately experienced C# developer, but I'm new to XNA and graphics in general. I'm making a 2D game and I'm trying to draw a texture that partially transparent. The desired transparency value ...
2
votes
1answer
269 views
Core Animation is not working with “alpha” value
Before this code, my movie pic alpha is set to 0,
CABasicAnimation* fadein= [CABasicAnimation animationWithKeyPath:@"alpha"];
[fadein setToValue:[NSNumber numberWithFloat:1.0]];
[fadein ...
2
votes
4answers
341 views
IOS: set alpha in a UIImage
I have an UIImage and I want to set its alpha at 0.00 after 3 seconds... In my UIImage there is a picture that I want to immediately see when I go in a view, but after 3 second it must disappear.
2
votes
3answers
126 views
Using only CSS, can I use only the alpha channel of a PNG?
I have this red PNG image that has variable transparency, but I need to display it on the web page as white with variable transparency. I'm thinking there's only two ways this might work:
Set the ...
2
votes
3answers
479 views
OpenGL ES 2.0 PNG alpha channel
I am just learning to work with OpenGL ES 2.0 for Android. I have been trying to simply display a texture on the middle of the screen, which was easy enough, but I cannot seem to get the PNG alpha to ...
2
votes
2answers
303 views
XNA 4.0 - Alpha and Multiple Textures … Messed Up
I am trying to make some sort of sliding menu... In a circle images will slide down or up as the user will touch the icons and slide them (like modern phones or like the casino machines' fruits ...