How to add RGB values into setColor() in Java?

Austin Grant :

How can I add (red, green, blue) values to my Java? For example:

 setColor(255, 0, 0);

The context looks like this:

public void render() {
    BufferStrategy bs = getBufferStrategy();
    if (bs == null) {
        createBufferStrategy(3);
        return;
    }
    Graphics g = bs.getDrawGraphics();

    g.setColor(); // <-- This line
    g.fillRect(0, 0, getWidth(), getHeight());

    g.dispose();
    bs.show();
}

I want to give my rectangle a color using RGB values like (200, 200, 200) for example; that'll be like a gray.

Loic P. :

You can get a Color instance with the simple code:

Color myWhite = new Color(255, 255, 255); // Color white

Then, you can set RGB color to your object with something like that:

g.setColor(myWhite);

Hope it helps you!

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=455513&siteId=1