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

link|improve this question

65% accept rate
Set these values in what context? what API, the Color class? – Sean Owen Jul 18 '11 at 14:11
feedback

1 Answer

up vote 3 down vote accepted

You can create a Color object (the values should either be ints between 0-255 or floats between 0f-1f:

Color c = new Color(red, green, blue, alpha);

If you want to paint an image with that color:

BufferedImage image = new BufferedImage(300, 200, BufferedImage.TYPE_INT_ARGB);
Graphics graphics = image.getGraphics(); 
graphics.setColor(c);
graphics.fillRect(50, 50, 100, 100);
graphics.dispose();

If you only want to set a pixel (color model must be ARGB):

image.setRGB(50, 50, c.getRGB());
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.