Transparency is the property of being see-through; a transparent object reveals objects behind it. Transparency is also known as alpha blending. The opposite of transparency is opacity.

learn more… | top users | synonyms

-1
votes
1answer
24 views

Does SFML support transparency?

Hi I am trying to draw a translucent sphere using OpenGL / glut; Easiest thing I think is to post the code: This is what I have at the moment; glutInit(&argc, argv); sf::ContextSettings ...
0
votes
1answer
9 views

When using Photoshop/GIMP is it better to color->alpha and then resize, or vice versa?

I was making a circular icon with semi-transparency, so I started with a large filled-in circle with a black border, then I did white->alpha, and resized the image to my required size. Would it have ...
0
votes
1answer
13 views

Hardware/Software rasterizer vs Ray-tracing

I saw the presentation at the High-Perf Graphics "High-Performance Software Rasterization on GPUs" and I was very impressed of the work/analysis/comparison.. ...
2
votes
1answer
52 views

C# - Transparent form background with MenuStrip?

According to a lot of questions here on SO, the best way to make the background of a form transparent is to set it to a fairly unused color (like Magenta) then set the form's TransparencyKey to that ...
0
votes
0answers
3 views

Windows C++ Visual Studio 2008 CTabCtrl icon transparency

I have a dialog window with a CTabCtrl. The following code is successful in showing an icon along with the text name on each of 16 tabs. It works fine as long as the icons are 16x16 pixel squares. ...
0
votes
1answer
13 views

Visual Basic - Drawing an image on a panel underneath an object

I have a panel with multiple pictureboxes in it, which when clicked change them image in the picturebox. At the same time when the image is changed, I want it to draw the same image on the panel at ...
1
vote
1answer
51 views

LinearGradient and transperent colors in TextView

I used Lineat Gradient to set gradient color in TextView and found very interesting situation: To set TextView gredient used next code: int c1 = getResources().getColor(R.color.test1); int c2 = ...
-2
votes
0answers
37 views

Transparencykey and displayed images issue

I made a transparent WinForm to launch a image for a certain amount of time (A SplashScreen) which is displayed in a picturebox control. The problem is the transparency of the form, the displayed ...
1
vote
0answers
31 views

Making a WPF Application Semi-Transparent

In Windows Forms you can make your application semi-transparent by using Opacity property, like so: I'm trying to achieve the same result with WPF, but it looks impossible. If I change the Opacity ...
0
votes
0answers
4 views

powerpoint transparent prints black [migrated]

In Powerpoint, I have a White box with a transparent outline. This does not appear on the document, and this is deliberate, I only use the reference points for connecting lines. However, when I ...
0
votes
1answer
41 views

Windows Forms Custom Control not painting correctly

So i'm trying to make a nice rounded switch that when clicked it will slide either left or right to basically turn something on or off (it could be used for other things). I have a rectangle version ...
0
votes
0answers
21 views

DirectFB blending issue

Here is the blending equation I am trying to achieve. From what I have seen, I don't think it is possible, but the DirectFB docs don't cover this area very clearly, so I may be missing something. ...
0
votes
0answers
16 views

GIF Transparent background in Mono

I am about to finish the second stage of a cross-platform application. It is being coded and debugged mainly in Windows, but has to work on linux as well. When in Windows, I use Visual Studio C#. ...
0
votes
0answers
12 views

Animated image with smooth transparency in all major browsers

I need to use an animated image with several transparency levels on a webpage. I unsuccessful tried to create a *.gif with multiple transparency levels. On the other hand *.png doesn't support ...
0
votes
1answer
17 views

“modal” div, interaction issues with content with IE8 transparent divs

I am implementing a modal div and I have a problem with the interaction of a transparent div in IE. I am using the following html and css for the modal div: html: <div id="content"> ...
1
vote
1answer
48 views

How do I create Bitmap from another image and keep the transparent background?

I am trying to create a bitmap from a PNG image that has a transparent background. When I use this method below it makes the background black. I've tried using drawColor() with the color being ...
0
votes
1answer
23 views

Actionscript 3 - How To Detect Collision Of Transparent Sprites

I have a sprite that shows a rectangle and has alpha = 0; and I want it to be positively tested for collision. Is that possible with full transparency and pure Flash ?
0
votes
1answer
39 views

Disable window transparency for Windows 7 & 8

I want to be able to disable window transparency in Windows Vista and newer. I know there are tools to do this, but how do we do this programmatically?
1
vote
1answer
22 views

Questions on object declaring and a few image import statements for making a basic game

So my friend and I are making a very very basic game for fun, its going to be a top down (about 45 degree angle) where there is a lumberjack chopping down trees. Very basic and kinda lame I'm aware ...
0
votes
3answers
48 views

Java Graphics2D transparent background

I have a Graphics2D object and I want to set up the background of the object. It has a setBackground method, which has a Color parameter. This way I can set the color of the background. My question ...
0
votes
1answer
25 views

How can I make UIBarButtonItem image transparent?

I'd like to use the attached png as an image of an UIBarButtonItem. I'd like to set its black background as transparent, but I can't find any way to set it as mask color in XCode. How can I make it ...
0
votes
3answers
52 views

Why is my window transparent when using AllowsTransparency=“True”

I'm attempting to make a translusent popup that covers the entire screen using WPF. The idea is to effectively create the light box style effect that we all see regularly when using assorted webpages. ...
-1
votes
1answer
47 views

Editing Tumblr theme's HTML to accommodate transparency

I have a Tumblr blog, and I'm using the Effector theme. I like it, but unfortunately it colors the backgrounds of all partially transparent images black. Is there any way I can edit the theme's HTML ...
0
votes
2answers
49 views

How to get rid of a color in an image

I want my image, a buffered Image, to have a transparent background, I first tries using a png, then a gif, then I tried using imageFilters but I could also not hit it off, so now I decided to use a ...
0
votes
1answer
26 views

Alpha blending for background

I am a beginner to DirectX, so please keep it simple for me. I have loaded a texture and displayed it on a quad, but the transparent background still shows. How can I stop that? I have tried a couple ...
0
votes
1answer
33 views

Google maps overlay image not entirely transparent -what am I missing?

Here is my code http://tinyurl.com/cb3womn As you can see the overlay image is not entirely transparent. When I open up that image in a picture viewer the transparency is total, not as it is ...
0
votes
0answers
18 views

Convert to alpha using PHP GD

I'm trying to achieve something close to what Fireworks does by using the convert to alpha filter (see http://erskinedesign.com/blog/fireworks-tips-convert-alpha/). Is this possible using only the php ...
0
votes
0answers
26 views

How can I make content disappear into transparency when scrolling?

I have read more than 30 similar discussions in www and have not yet found an answer to my specific problem I am trying to have a scrollable content disappear some pixels BENEATH my header into ...
1
vote
2answers
41 views

Semitransparent Textfield

How do you make a JTextField semi-transparent? I need about 50% alpha for the background of the text field. I have tried textField.setOpaque(false) then textField.setBackground(new Color(0,0,0,128)), ...
0
votes
0answers
34 views

My divs have become transparent in IE8 [closed]

www.what-to-do.net78.net Hi, after trying to fix my dropdown menu. My enitire website looks terrible in IE8. The DIV backgrounds are now completely transparent (instead of slightly transparent) in ...
2
votes
1answer
49 views

How to make transparent corners of borders for a perspective effect?

As I'm making a new design for an existing website, I have to draw some elements in "perspective". By using some :before and :after pseudo-elements, it was easy to make it, but the corners added are ...
0
votes
0answers
69 views

Loading PNG file. Need to get RGBA HBITMAP

I'm trying to create a splash screen that will show transparent png background. So at first I need to load png file into format that is acceptable for the UpdateLayeredWindow calls (basically HBITMAP ...
0
votes
1answer
36 views

Possible to have a fully transparent inset box-shadow?

Is it possible to have the two divs with box-shadow overlap with fully transparent edges? In my example, I want to keep the faded, kind of rounded edge, but it's important that the underlying box is ...
0
votes
1answer
77 views

Make area around masked region transparent with CALayers?

I'm trying to crop an image to an irregular shape, but I need to make the area that was removed transparent. Inside subclass of UIView CALayer *myLayer = [CALayer layer]; CAShapeLayer ...
1
vote
1answer
48 views

Shadow to a transparent UITableView and rounded corners

I need to give my table rounded corners and a drop shadow outside its borders. The table does not take the whole screen so I can't just turn off maskToBounds and clipsToBounds to NO, as the cells will ...
-3
votes
0answers
23 views

View still snap to navigationbar after set translucent to yes? [closed]

View still snap to navigationbar(while navigation bar moving) after set translucent to yes. [self.navigationController.navigationBar setTranslucent:YES]; What is cause of this problem? (in detail ...
0
votes
0answers
34 views

Problems with creating a transparent image with php

Im working on a script like this http://www.stylefruits.de/ where i put some transparent pictures above an other to get a collection of pictures and then i create a jpg of all this png images. But i ...
1
vote
1answer
45 views

Transparent gap within navigation bar

I am trying to make it so that there is a gap (but without setting the color to the same as the background) on the navigation bar where the current selected tab is... To explain in more detail, I ...
1
vote
3answers
63 views

Transparent zone of a bezier path doesn't allow user interaction

I've got a BezierPath which has the form of an arc more or less, the thing is that I want the user to be able to tap inside the arc (where it could be a door for being more clear) but not on the arc. ...
0
votes
1answer
63 views

OpenGL/C++: Back to Front rendering with vertex buffers

I'm currently wrapping my head around how to efficiently render polygons within a vertex buffer in back-to-front order to get transparency working.. I got my vertex buffers and index buffers set up, ...
0
votes
1answer
15 views

From which version of Windows child windows can have transparency?

SetWindowLong (handle, GWL_EXSTYLE, GetWindowLong (h, GWL_EXSTYLE ) | WS_EX_LAYERED ); SetLayeredWindowAttributes(h, 0, 180, 2); On XP this will only work if handle is floating window with no ...
0
votes
1answer
30 views

Detect transparency in div for .click purposes?

I've got three elements layered on top of one another, and each of them contains some transparency. There is no transparency in the middle, just around the edges. I want to be able to click the div ...
1
vote
1answer
47 views

Drawing transparent sprites in a 3D world in OpenGL(LWJGL)

I need to draw transparent 2D sprites in a 3D world. I tried rendering a QUAD, texturing it(using slick_util) and rotating it to face the camera, but when there are many of them the transparency ...
0
votes
0answers
143 views

Three.js cube transparent texture display edges

I'm trying to create the limits of the world in a game demo with three.js so I have created two cubes, each cube displays a "transparent forest texture" that will simulate the world limits. My ...
3
votes
3answers
59 views

Draw a translucent sphere using rgl in R

I have a set of data, looks like: x y z 1 1 2 1 2 3 5 7 3 -3 2 4 4 -2 1 1 so each row record the dot coordinate in a 3-D space. I want to plot all the dot as points ...
0
votes
2answers
116 views

how to make haxe nme preloader render bitmap with transparency

I want to show image with alpha channel over preloader's background for flash target with haxe nme. This need seems to be common when it comes to a preloader. I find several possible way to do ...
1
vote
1answer
39 views

Div transparent. Text inside not transparent

Is it possible to make a div transparent but keep the text inside not transparent? (The only solution I can imagine is to position the text outside the div and try to position it on top of the div ...
2
votes
2answers
61 views

How to remove transparent color ( opacity ) [duplicate]

I have the following Codes: html... <div id="solidcolor"> <div class="transcolor">transcolor <div class="notranscolor">some text</div> </div> ...
1
vote
1answer
29 views

Canvas transparency on IE

When I draw a rectangle or other shape on canvas (using kineticJS, creating a new Kinetic.Path), and set fill: none as in the following: var rect = new Kinetic.Path({ x: 0, y: ...
3
votes
1answer
68 views

Problems with Transparency in Android

I have stumbled across a problem on some of the Android Tablets notably Samsung Galaxy Note, Galaxy Tab 10 and Nexus 10. The problem is after I keep the application running for a while and resume it ...

1 2 3 4 5 33