The rgba tag has no wiki summary.
120
votes
5answers
10k views
Convert RGB-->RGBA
I have a hex color, e.g. #F4F8FB (or rgb(244, 248, 251)) that I want converted into an as-transparent-as-possible rgba color (when displayed over white). Make sense? I'm looking for an algorithm, or ...
8
votes
6answers
168 views
Is it possible to change only the alpha of a rgba background colour on hover?
I have a set of <a> tags with differing rgba background colours but the same alpha. Is it possible to write a single css style that will change only the opacity of the rgba attribute?
A quick ...
8
votes
4answers
543 views
Color similarity/distance in RGBA color space
How to compute similarity between two colors in RGBA color space? (where background color is unknown of course)
I need to remap RGBA image to a palette of RGBA colors by finding best palette entry ...
8
votes
5answers
5k views
How to replicate PS multiply layer mode
Does anybody know of a good way to replicate Photoshop's multiply layer mode using either an image or CSS?
I'm working on a project that has thumbnails that get a color overlay when you hover over ...
7
votes
3answers
74 views
Convert RGBA PNG to RGB with PIL
I'm using PIL to convert a transparent PNG image uploaded with Django to a JPG file. The output looks broken.
Source file
Code
Image.open(object.logo.path).save('/tmp/output.jpg', 'JPEG')
or
...
6
votes
5answers
6k views
IE8 gradient filter not working if a background color exists
I'm trying to use the following CSS styles. They are working on most browsers, including ie7. However in ie8, the transparent background does not show and instead I get the background color which I ...
6
votes
3answers
7k views
CSS RGBA border / background alpha double
I'm working on a website that has a lot of transparency involved, and I thought I would try to build it entirely in RGBA and then do fallbacks for IE. I need a "facebox" style border effect, where the ...
5
votes
2answers
604 views
Mod_rewrite with multiple variables
I'm using a PHP script that dynamically generates transparent PNGs for use as CSS backgrounds from a query string that takes RGBa and HSLa values. The original script can be found here, I've only ...
4
votes
1answer
2k views
LESScss converting rgba to hex? how to nest color variables into a mixin?
Does LESScss convert all rgba colors to hex values?
I am trying to create a mixin, say, .color, that allows you to pass in a color variable previously defined, and I want it to be in rgba.
this ...
3
votes
1answer
63 views
Why do browsers render rgba differently on OSX?
I was trying to code up some color manipulation code and was stuck for a long time with alpha, then I (2 hours later) realized browsers render rgba differently.
I created this test: ...
3
votes
1answer
116 views
Fastest way to create a transparent image in Mathematica 8 or above?
At the moment I use:
transparent // ClearAll
transparent[i_] :=
Module[{r, g, b, a},
{r, g, b} = ImageData /@ ColorSeparate[i, "RGB"];
a = Unitize[3. - (r + g + b)];
(Image /@ {r, g, b, ...
3
votes
2answers
98 views
fuse overlapping elements with transparent background and box shadow
I'm trying to make two elements line up and fuse -- as if they were one element -- normally I would overlap them a bit and they will pretty readily look like one element but the elements I am using ...
3
votes
1answer
91 views
Create RGBA Colormap in PyGTK
I have a project in Python 2.7 and PyGTK.
I need to create a transparent background window, but still be able to display images (pixmap and mask based) and other objects inside of the window.
I am ...
3
votes
1answer
135 views
How to convert 256 colors palettized RGBA image data to NSImage
I'm a newbie developer and I need your help with something that is probably trivial for you.
I have an image data in this pixel format: 256 colors palettized RGBA. It comes from FFmpeg (PIX_FMT_PAL8) ...
3
votes
2answers
988 views
Cross browser rgba background
I want to get rgba backgrounds working with all browsers. I did some searching and found out that generally there are three types of browsers out there:
1) Browsers that supprot rgba.
2) Internet ...
2
votes
1answer
82 views
Prototype scriptaculous background-color: RGBA color animations
Is something like this http://pioupioum.fr/sandbox/jquery-color/ for Prototype and scriptaculous?
I want to periodical animate RGBA for my website background to get something sexy and fancy...
2
votes
3answers
260 views
regex javascript to match both RGB and RGBA
Currently I have this regex which matches to an RGB string. I need it enhanced so that it is robust enough to match either RGB or RGBA.
rgbRegex = /^rgb\((\d+),\s*(\d+),\s*(\d+)\)$/; //matches RGB
...
2
votes
1answer
206 views
CSS3 Crossbrowser Gradient Background with rgb/rgba and fallbacks
I want to try and get a cross browser gradient effect working with rgb values with fall backs in case the browser doesn't support it.
jsFiddle example: http://jsfiddle.net/HelloJoe/hUxdh/
I believe ...
2
votes
1answer
306 views
What does a correct call to CGImageCreate look like if the data provider for it uses an array created by the app?
I'm trying to create a bitmap in memory as part of a pattern function that a drawLayer:inContext: method (this method is part of the CALayer delegate protocol) will call. The pattern function looks ...
2
votes
1answer
556 views
set RGB and Alpha component value of a color?
There are 3 integer values that makes up a RGB value, and also i have the Alpha component value of the color. how do i set these 4 values to get the desired colour
2
votes
1answer
253 views
How to handle alpha in a manual “Overlay” blend operation?
I'm playing with some manual (walk-the-pixels) image processing, and I'm recreating the standard "overlay" blend. I'm looking at the "Photoshop math" macros here:
...
2
votes
4answers
5k views
CSS background opacity with rgba not working in IE 8
I am using this CSS for background opacity of a <div>:
background: rgba(255, 255, 255, 0.3);
It’s working fine in Firefox, but not in IE 8. How do I make it work?
2
votes
4answers
1k views
IPhone RGBA to ARGB
Im using glReadPixels to grab screen shots of my opengl scene and then turning them into a video using AVAssetWriter on IOS 4. My problem is i need to pass the alpha channel to the video which only ...
2
votes
5answers
240 views
How to extract r, g, b, a values from CSS color?
What would be the easiest way to transform
$('#my_element').css('backgroundColor')
to object like this:
{ r: red_value, g: green_value, b: blue_value, a: alpha_value }
?
1
vote
2answers
19 views
Flattening image layers
I am working on a basic image editing tool with support for layers, and I need to know how to merge the layers into a single image. Obviously, if the pixels have no alpha value, then whichever is on ...
1
vote
1answer
176 views
How to set RGBA Color of a Pixel of an UIImage
I am looking for a possibility to set (change) the RGBA color of a Pixel of an UIImage for my Iphone Application. (I actually want to implement some floodfill stuff)
So I need something like this:
...
1
vote
3answers
134 views
RGBa in Internet Explorer
I know that IE does not support RGBa. I also know that you can use the follow methods:
/* For IE 5.5 - 7*/
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, ...
1
vote
3answers
830 views
How do I get the corresponding Hex value of an RGB color in Excel/VBA?
I'm trying to set a public const of a color in my VBA code. Normally, I can use:
Dim BLUE As Long
BLUE = RGB(183, 222, 232)
However, there's no way to public const that because of the RGB ...
1
vote
0answers
100 views
GraphicsMagick Invalid bit depth for RGBA image
I want to reduce the colors in arbitrary images to 10. On some images I get a GraphicsMagick exception "Invalid bit depth for RGBA image".
I have noticed a few things while testing on different ...
1
vote
2answers
469 views
border-color: rgba() borders overlap at the corners giving a darker color than intended
Using the following code:
element{
width:300px;
border:9px solid;
border-color:rgb(0,0,0);
border-color:rgba(0,0,0, 0.7);
}
I end up with corners that are darker due to the overlay ...
1
vote
1answer
140 views
Algorithm for Antialiasing Rastor Images
I am looking for an efficient algorithm that will look at a four channel image (RGBA), find an object (a group of pixels with Alpha >0 surrounded by pixels with alpha = 0) and then attempt to ...
1
vote
2answers
640 views
CSS3 linear gradient + rgba, not so true transparency
I have a page setup that looks similar to this:
<body>
<div id="wrapper">
<!--- ... content ... -->
</div>
</body>
The body has a background color and ...
1
vote
2answers
2k views
changing rgba alpha transparency with jquery [closed]
Possible Duplicate:
jQuery + RGBA color animations
hey,
i want to change the opacity of an rgba value on hover, but the opacity stays at .07.. maybe ou can help me find the mistake.
CSS ...
1
vote
1answer
447 views
Deciphering HEX RGBA for MS-filters in CSS
I'm writing styles for a page where I'd like to use rgba colors on the background of some list items. I've used the CSS background property along with rgba(146,138,118,.4) to define my transparent ...
1
vote
4answers
338 views
Set opacity to the menu but keep text opaque in CSS
How can I create a menu which only its background is transparent? The text should keep opaque (opacity: 1)
If I set
li:hover {
opacity: 0.5
}
The whole list item becomes transparent. How do I ...
1
vote
1answer
73 views
Can I set a rgba color within a color theme
I read in an old qooxdoo note that "qx.util.ColorUtil now accepts rgba values for cssStringToRgb()".
This means to me that qoxdoo has the ability to deal with rgba colors in some ways.
But none of ...
0
votes
0answers
14 views
Obtain r,g,b a -float values from Android Color Picker
I'am using an Android Color Picker in my application which returns an android integer constant(-ve value). How can obtain r,g,b,a float values from the integer constant, so that I can pass r,g,b,a ...
0
votes
0answers
22 views
Does IE support a proprietary semi-transparent CSS hexidecimal color code?
I was playing around with this gradient generator and noticed that in the filter property, they use a variation of the common place hexidecimal color code:
#00ffffff
to seemingly acheive an rgba ...
0
votes
2answers
43 views
SASS/Compass - Convert Hex, RGB, or Named Color to RGBA
This may be Compass 101, but has anyone written a mixin which sets the alpha value of a color? Ideally, I would like the mixin to take any form of color definition, and apply transparency:
@include ...
0
votes
2answers
72 views
text rendering is screwed with “gradient” on IE
RGBA -- workaround for IE is “DXImageTransform.Microsoft.gradient".Found a handy tool provided by www.css3please.com for cross browser transparency,but applying this gradient on IE(IE8) -- works,but ...
0
votes
0answers
53 views
Webkit bug: Alpha border with border-radius and background-clip
I have the following problem in webkit browsers. You can see the white corner in webkit browsers:
http://www.webgarten.ch/round.jpg
I have the following code:
ul#pronav li .sub {
...
0
votes
1answer
57 views
RGBa border color & <input> element
I ran into an issue while working on a webdesign, trying to apply a semi-transparent (RGBa) border color to elements doesn't seem to work properly. You get a non-transparent border instead. Here's a ...
0
votes
1answer
77 views
Combining 2 RGB Colors With Alpha
I'm trying (In Java) to get the resulting color when I combine 2 colors, the one on top having an alpha transparency. Basically, I'm trying to assign a background color to an image, but I've broken it ...
0
votes
0answers
89 views
CGBitmapContext byte order changed to ABGR - and CGImage metadata doesn't seem to match bitmap contents
I am standardizing the orientation and max size of an image using the following code (gleaned from elsewhere):
+ (UIImage *)scaleAndRotateImage:(UIImage *)image
{
int kMaxResolution = 960; // Or ...
0
votes
2answers
63 views
Fancybox opens in test page, not in actual page
Fancybox 2.0 is launching exactly as I want it to in my test page. However, it isn't opening in my actual page.
My test page is at http://beta.nathanbunn.co.uk/js/fancybox/test.html and my actual ...
0
votes
2answers
55 views
RGB to CMYK 0 0 0 100 help find color scheme [closed]
Hi please give me link ongood converter, or help which color in RGB equal to CMYK 0 0 0 100
0
votes
1answer
102 views
lightbox: problem in making the rest of the screen transparent
Designing a web site in which i've used a lot of background:rgba in many places.hence,when i tried to make a lightbox in which i'm using background: rgba(0, 0, 0, 0.6) !important; to make the rest of ...
0
votes
2answers
182 views
Problem reconstituting UIImage from RGBA pixel byte data
I need to create 12 coloured images from a single greyscale image ( red orange yellow etc )
Source image is actually a PNG, RGBA:
I'm using a library I found ( ...
0
votes
2answers
96 views
Color: rgba() workaround for Internet Explorer?
I've been able to succesfully use the following workaround method:
background: rgb(42,42,42);
background: rgba(42,42,42,0.7);
However, this only works with background:, and doesn't work with ...
0
votes
3answers
143 views
Is there a way to animate alpha of rgba background without jquery.color?
I need animate background with jQuery's animate() from rgba(255,255,255,0.5) to rgba(255,255,255,0.9) without using jquery.color plugin & changing of CSS opacity.
The background color is always ...