Top "Rgb" questions

RGB stands for Red-Green-Blue and specifies a color using three values, which represent the respective amount of red, green, and blue in the color.

setBackground(new color()); in java does not understand the given RGB value

I have a program with some gui, on the JFrame I set, setBackground( new Color(107, 106, 104) ); The issue is that I …

java swing hex rgb setbackground
Convert grayscale value to RGB representation?

How can I convert a grayscale value (0-255) to an RGB value/representation? It is for using in an SVG …

colors rgb grayscale
How to get RGB values from UIColor?

I'm creating a color object using the following code. curView.backgroundColor = [[UIColor alloc] initWithHue:229 saturation:40 brightness:75 alpha:1]; How can I …

ios rgb uicolor
Convert hex color to RGB values in PHP

What would be a good way to convert hex color values like #ffffff into the single RGB values 255 255 255 using PHP?

php colors hex rgb
How to initialize UIColor from RGB values properly?

I am working on an iPhone application which uses various colors. When user selects the particular color button I set …

uibutton rgb uicolor
rgb values to 0 to 1 scale

I'm trying to calculate some RGB colors (0 - 255) for a 0 to 1 scale. Does anyone knows a online converter or it …

math rgb
Converting Hex to RGB value in Python

Working off Jeremy's response here: Converting hex color to RGB and vice-versa I was able to get a python program …

python colors rgb
Javascript color gradient

Using javascript with or without Jquery, I need to a create a gradient of colours based on a start and …

javascript jquery colors rgb gradient
Convert RGBA color to RGB

How to convert a RGBA color tuple, example (96, 96, 96, 202), to corresponding RGB color tuple? Edit: What I want is to get …

image colors rgb
Understanding BufferedImage.getRGB output values

I'm getting an integer value for the pixel in an image using this method: int colour = img.getRGB(x, y); …

java image-processing colors rgb bufferedimage