Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

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

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.

over 4 years ago · Santiago Trujillo
3 answers
Answer question

0

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!

over 4 years ago · Santiago Trujillo Report

0

Or you can do:

setColor(new Color(r, g, b));

For example:

setColor(new Color(0, 0, 0)); //sets the color to Black
over 4 years ago · Santiago Trujillo Report

0

You can do it with Graphics.setColor

For example:

g.setColor(Color.getHSBColor(255, 79, 18));
over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!